12 lines
124 B
Go
12 lines
124 B
Go
package dhcp
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type Config struct {
|
|
Network *net.IPNet
|
|
Gateway net.IP
|
|
Name string
|
|
ConfDir string
|
|
}
|