robo/robo.go

14 lines
150 B
Go
Raw Normal View History

2015-02-04 21:08:44 -08:00
package robo
2015-02-04 21:35:25 -08:00
import "log"
2015-02-04 21:08:44 -08:00
const Port = 1337
2015-02-04 21:24:45 -08:00
type Point struct {
X, Y float64
}
2015-02-04 21:35:25 -08:00
func init() {
log.SetFlags(log.Lmicroseconds | log.Lshortfile)
}