Initial commit

This commit is contained in:
2021-03-21 23:10:46 +01:00
commit 3144420a47
22 changed files with 2364 additions and 0 deletions

17
main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"os"
"speedrun/cmd"
"github.com/apex/log"
"github.com/apex/log/handlers/cli"
)
func main() {
h := cli.New(os.Stdout)
h.Padding = 0
log.SetHandler(h)
cmd.Execute()
}