pcmt/main.go

11 lines
97 B
Go
Raw Normal View History

package main
import "log"
func main() {
err := run()
if err != nil {
log.Fatalln(err)
}
}