octopush/cmd/kraken/kraken.go
2022-09-11 22:56:54 +02:00

19 lines
215 B
Go

package main
import (
"os"
"git.front.kjuulh.io/kjuulh/kraken/cmd/kraken/commands"
)
func main() {
Execute()
}
func Execute() {
err := commands.CreateKrakenCmd().Execute()
if err != nil {
os.Exit(1)
}
}