local-ip.sh/main.go

22 lines
328 B
Go

package main
import (
"flag"
"strings"
xip "local-ip.dev/xip"
)
const (
zone = "local-ip.dev."
nameservers = "ns.local-ip.dev."
)
func main() {
var port = flag.Int("port", 53, "port the DNS server should bind to")
flag.Parse()
n := xip.NewXip(zone, strings.Split(nameservers, ","), *port)
n.StartServer()
}