package main import ( "github.com/spf13/cobra" ) var cmdExport = &cobra.Command{ Use: "export", Short: "Export configuration or content", Long: "Provides subcommands to export configuration as Kurz gets it or content found in the database", } func init() { cmd.AddCommand(cmdExport) }