octopush/cmd/kraken/kraken.go

19 lines
218 B
Go
Raw Normal View History

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