mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
6 lines
208 B
Go
6 lines
208 B
Go
package definitions
|
|
|
|
type Network struct {
|
|
Interfaces map[string]Interface `json:"interfaces" validate:"required,dive"`
|
|
StaticRoutes []StaticRoute `json:"static_routes" validate:"required,dive"`
|
|
}
|