Files
openlan/pkg/config/dhcp.go
2024-01-27 20:21:26 +08:00

10 lines
292 B
Go
Executable File

package config
type Dhcp struct {
Name string `json:"name,omitempty"`
Interface string `json:"interface,omitempty"`
Subnet *Subnet `json:"subnet,omitempty"`
Hosts []HostLease `json:"hosts,omitempty"`
Routes []PrefixRoute `json:"routes,omitempty"`
}