mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 18:38:52 -07:00
8 lines
144 B
Go
8 lines
144 B
Go
package dhcpd
|
|
|
|
import "fmt"
|
|
|
|
func CheckIfOtherDHCPServersPresent(ifaceName string) (bool, error) {
|
|
return false, fmt.Errorf("not supported")
|
|
}
|