Files
speedrun/main.go
Dawid Pogorzelski 4a0574554a Tweaks (#53)
* Fix loglevel parsing

* Bump dependencies

* Change --filter to --target

* Update documentation

* Import log handler as "loghandler"

* Change command color to purple

* Change flag name to target

* Update formatting
2021-07-30 22:51:20 +02:00

17 lines
216 B
Go

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