package cmd import ( "github.com/spf13/cobra" ) func NewRootCmd() *cobra.Command { return &cobra.Command{ Use: "start", Short: "Start the server", Long: `Start the server`, } }