blob: 603a946ac5e22e9ad65b58c65026dac0c656be37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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)
}
|