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.
This commit is contained in:
2026-09-07 13:45:20 +00:00
commit b7f34045e6
9 changed files with 343 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package cmd
import "github.com/spf13/cobra"
func newVerifyCmd() *cobra.Command {
return &cobra.Command{Use: "verify ARCHIVE", Short: "Check an archive against the key in hand"}
}