16 lines
224 B
Go
16 lines
224 B
Go
package noodle
|
|
|
|
import "time"
|
|
|
|
type Noodle struct {
|
|
Id string
|
|
Name string
|
|
Proto string
|
|
Src string
|
|
ListenPort int
|
|
DestPort int
|
|
DestHost string
|
|
Expiration time.Duration
|
|
IsUp bool
|
|
}
|