* 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
17 lines
216 B
Go
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()
|
|
}
|