Add logging

This commit is contained in:
2022-09-10 00:09:09 +02:00
parent 8ceb4452f9
commit af142c4b09
9 changed files with 170 additions and 0 deletions

18
cmd/kraken/kraken.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"os"
"git.front.kjuulh.io/kjuulh/kraken/cmd/server/commands"
)
func main() {
Execute()
}
func Execute() {
err := commands.CreateServerCmd().Execute()
if err != nil {
os.Exit(1)
}
}