add host endpoints to cli

This commit is contained in:
Anish Mukherjee
2023-01-04 16:00:19 +05:30
parent 75dc77a6ea
commit 8b5eb0cbd4
7 changed files with 167 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import (
"github.com/gravitl/netmaker/cli/cmd/context"
"github.com/gravitl/netmaker/cli/cmd/dns"
"github.com/gravitl/netmaker/cli/cmd/ext_client"
"github.com/gravitl/netmaker/cli/cmd/host"
"github.com/gravitl/netmaker/cli/cmd/keys"
"github.com/gravitl/netmaker/cli/cmd/metrics"
"github.com/gravitl/netmaker/cli/cmd/network"
@@ -66,4 +67,5 @@ func init() {
rootCmd.AddCommand(usergroup.GetRoot())
rootCmd.AddCommand(metrics.GetRoot())
rootCmd.AddCommand(network_user.GetRoot())
rootCmd.AddCommand(host.GetRoot())
}