Files
vantage-ctl/internal/cmd/backup.go
T
mrhid6 b7f34045e6 feat: Add the vantagectl module and its cobra root
Its own module rather than a package under shared, so cobra and pflag stay
out of the module graphs of server, admin and sitesvc, which never use
them.
2026-09-07 13:45:20 +00:00

8 lines
166 B
Go

package cmd
import "github.com/spf13/cobra"
func newBackupCmd() *cobra.Command {
return &cobra.Command{Use: "backup", Short: "Write an archive of the database"}
}