package cmd import ( "fmt" "github.com/spf13/cobra" ) func init() { rootCmd.AddCommand(versionCmd) } var migrateCmd = &cobra.Command{ Use: "migrate", Short: "Migrate database schema up/down", Long: `All software has versions. This is backoffice backend's`, Run: func(cmd *cobra.Command, args []string) { fmt.Println("Migrate database schema up/down") }, }