package robo import "log" const Port = 1337 type Point struct { X, Y float64 } func init() { log.SetFlags(log.Lmicroseconds | log.Lshortfile) }