mirror of https://github.com/dnomd343/XProxy.git
dnomd343
2 years ago
4 changed files with 25 additions and 1 deletions
@ -0,0 +1,11 @@ |
|||
package dhcp |
|||
|
|||
type dhcpConfig struct { |
|||
Enable bool `yaml:"enable" json:"enable"` |
|||
Configure string `yaml:"config" json:"config"` |
|||
} |
|||
|
|||
type Config struct { |
|||
IPv4 dhcpConfig `yaml:"ipv4" json:"ipv4"` |
|||
IPv6 dhcpConfig `yaml:"ipv6" json:"ipv6"` |
|||
} |
Loading…
Reference in new issue