Add logging
This commit is contained in:
22
cmd/kraken/commands/root.go
Normal file
22
cmd/kraken/commands/root.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package commands
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
func CreateKrakenCmd() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "krakenserver",
|
||||
Short: "A brief description of your application",
|
||||
Long: `A longer description that spans multiple lines and likely contains
|
||||
examples and usage of using your application. For example:
|
||||
|
||||
Cobra is a CLI library for Go that empowers applications.
|
||||
This application is a tool to generate the needed files
|
||||
to quickly create a Cobra application.`,
|
||||
// Uncomment the following line if your bare application
|
||||
// has an action associated with it:
|
||||
// Run: func(cmd *cobra.Command, args []string) { },
|
||||
}
|
||||
cmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
||||
|
||||
return cmd
|
||||
}
|
Reference in New Issue
Block a user