Reorganize Go project layout

This commit is contained in:
2026-03-30 20:01:19 -04:00
parent e92644cf72
commit ded36aa0e0
41 changed files with 14465 additions and 182 deletions

12
internal/noodle/model.go Normal file
View File

@ -0,0 +1,12 @@
package noodle
type Noodle struct {
Id string
Name string
Proto string
ListenPort int
DestPort int
DestHost string
Expiration int
IsUp bool
}