diff --git a/cmd/server/commands/start.go b/cmd/server/commands/start.go index 8ac1274..0e34f8c 100644 --- a/cmd/server/commands/start.go +++ b/cmd/server/commands/start.go @@ -7,7 +7,7 @@ import ( "go.uber.org/zap" ) -func NewStartServerCommand(logger *zap.Logger) *cobra.Command { +func NewStartServerCommand(_ *zap.Logger) *cobra.Command { cmd := &cobra.Command{ Use: "start", Short: "Start the kraken server", diff --git a/go.mod b/go.mod index 50f0742..567f3f0 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,7 @@ module git.front.kjuulh.io/kjuulh/kraken go 1.19 require ( + git.front.kjuulh.io/kjuulh/curre v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/spf13/cobra v1.5.0 // indirect github.com/spf13/pflag v1.0.5 // indirect diff --git a/go.sum b/go.sum index c3b631f..7dbe3e2 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,7 @@ +git.front.kjuulh.io/kjuulh/curre v0.0.0-20220909233936-421425959197 h1:aOFriK+Ui/Kp0llmPXi3qTQkU6IPvsrRW4jl87TPArQ= +git.front.kjuulh.io/kjuulh/curre v0.0.0-20220909233936-421425959197/go.mod h1:m7WpSehONLqPh/XF3F0BI0UOpLOfGuDmDEFI1XsM6fE= +git.front.kjuulh.io/kjuulh/curre v1.0.0 h1:+a+bXcIGalBtnbmEMXjbf8gHrodp9rM5gGsz3EnI++M= +git.front.kjuulh.io/kjuulh/curre v1.0.0/go.mod h1:m7WpSehONLqPh/XF3F0BI0UOpLOfGuDmDEFI1XsM6fE= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/internal/server/server.go b/internal/server/server.go new file mode 100644 index 0000000..abb4e43 --- /dev/null +++ b/internal/server/server.go @@ -0,0 +1 @@ +package server