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