export.go 296 B

123456789101112131415
  1. package main
  2. import (
  3. "github.com/spf13/cobra"
  4. )
  5. var cmdExport = &cobra.Command{
  6. Use: "export",
  7. Short: "Export configuration or content",
  8. Long: "Provides subcommands to export configuration as Kurz gets it or content found in the database",
  9. }
  10. func init() {
  11. cmd.AddCommand(cmdExport)
  12. }