mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-28 18:08:51 +03:00
12 lines
305 B
Go
12 lines
305 B
Go
|
package dhcpsvc
|
||
|
|
||
|
import "github.com/AdguardTeam/golibs/errors"
|
||
|
|
||
|
const (
|
||
|
// errNilConfig is returned when a nil config met.
|
||
|
errNilConfig errors.Error = "config is nil"
|
||
|
|
||
|
// errNoInterfaces is returned when no interfaces found in configuration.
|
||
|
errNoInterfaces errors.Error = "no interfaces specified"
|
||
|
)
|