package global import "log" type AdventRunner interface { Run(int) } func E(err error) { if err != nil { log.Panic(err) } }