octopush/cmd/kraken/kraken.go
2022-09-21 11:06:53 +02:00

19 lines
221 B
Go

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