octopush/cmd/kraken/kraken.go

19 lines
215 B
Go
Raw Normal View History

2022-09-10 00:09:09 +02:00
package main
import (
"os"
2022-09-11 22:56:54 +02:00
"git.front.kjuulh.io/kjuulh/kraken/cmd/kraken/commands"
2022-09-10 00:09:09 +02:00
)
func main() {
Execute()
}
func Execute() {
2022-09-11 22:56:54 +02:00
err := commands.CreateKrakenCmd().Execute()
2022-09-10 00:09:09 +02:00
if err != nil {
os.Exit(1)
}
}