package host import ( "github.com/spf13/cobra" ) var Cmd = &cobra.Command{ Use: "host", Short: "Manage VPS host", Long: "Commands for managing and monitoring the VPS host", } func init() { Cmd.AddCommand(initCmd) Cmd.AddCommand(statusCmd) Cmd.AddCommand(updateCmd) Cmd.AddCommand(sshCmd) Cmd.AddCommand(setDomainCmd) initCmd.Flags().String("base-domain", "", "Base domain for auto-generated subdomains (e.g., apps.example.com)") }