delete works and with test

This commit is contained in:
2025-07-30 20:29:24 -04:00
parent 379eb6e206
commit e92644cf72
10 changed files with 427 additions and 36 deletions

12
model.go Normal file
View File

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