// vim: shiftwidth=4 tabstop=4 noexpandtab package main import ( "log" "time" ) func main() { log.SetFlags(0) // disable timestamp because systemd takes care of that log.Println("Starting birdscan") go runServer() for { time.Sleep(1 * time.Second) } }