summaryrefslogtreecommitdiffstats
path: root/cmd/deploy/host/host.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/deploy/host/host.go')
-rw-r--r--cmd/deploy/host/host.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/cmd/deploy/host/host.go b/cmd/deploy/host/host.go
deleted file mode 100644
index 603a946..0000000
--- a/cmd/deploy/host/host.go
+++ /dev/null
@@ -1,18 +0,0 @@
1package host
2
3import (
4 "github.com/spf13/cobra"
5)
6
7var Cmd = &cobra.Command{
8 Use: "host",
9 Short: "Manage VPS host",
10 Long: "Commands for managing and monitoring the VPS host",
11}
12
13func init() {
14 Cmd.AddCommand(initCmd)
15 Cmd.AddCommand(statusCmd)
16 Cmd.AddCommand(updateCmd)
17 Cmd.AddCommand(sshCmd)
18}