NET-1962: add gateway subcommand. (#3339)

* feat(go): add deprecation warning.

* feat(go): add support for gateway commands.

* feat(go): mention the server version in which the commands were deprecated.
This commit is contained in:
Vishal Dalwadi
2025-02-23 21:50:10 -08:00
committed by GitHub
parent 48535f7ef1
commit 9a7c13b8a6
9 changed files with 142 additions and 18 deletions

View File

@@ -1,6 +1,7 @@
package cmd
import (
"github.com/gravitl/netmaker/cli/cmd/gateway"
"os"
"github.com/gravitl/netmaker/cli/cmd/acl"
@@ -55,4 +56,5 @@ func init() {
rootCmd.AddCommand(host.GetRoot())
rootCmd.AddCommand(enrollment_key.GetRoot())
rootCmd.AddCommand(failover.GetRoot())
rootCmd.AddCommand(gateway.GetRoot())
}