mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 16:47:11 +08:00
10 lines
292 B
Go
Executable File
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"`
|
|
}
|