ente/cli/cmd/export.go
2024-03-01 12:39:01 +05:30

20 lines
313 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// versionCmd represents the version command
var exportCmd = &cobra.Command{
Use: "export",
Short: "Starts the export process",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
ctrl.Export()
},
}
func init() {
rootCmd.AddCommand(exportCmd)
}