mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
6 lines
204 B
Go
6 lines
204 B
Go
package network
|
|
|
|
type Network struct {
|
|
Interfaces map[string]Interface `json:"interfaces" validate:"required,dive"`
|
|
StaticRoutes []StaticRoute `json:"static_routes" validate:"required,dive"`
|
|
}
|