mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-01-09 23:47:23 +03:00
7 lines
144 B
Go
7 lines
144 B
Go
package dhcpd
|
|
|
|
import "fmt"
|
|
|
|
func CheckIfOtherDHCPServersPresent(ifaceName string) (bool, error) {
|
|
return false, fmt.Errorf("not supported")
|
|
}
|