From 433a0c3f648311adcb324080a6b2ce4193d6ca6f Mon Sep 17 00:00:00 2001 From: perp Date: Sat, 12 Aug 2023 00:20:59 +0100 Subject: [PATCH] :sparkles: Added and removed a command Added init command, removed domain command. --- cmd/shogo/commands/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/shogo/commands/root.go b/cmd/shogo/commands/root.go index 774efa3..9e8932a 100644 --- a/cmd/shogo/commands/root.go +++ b/cmd/shogo/commands/root.go @@ -36,9 +36,9 @@ func init() { // Add commands rootCmd.AddCommand(countCmd) - rootCmd.AddCommand(domainCmd) rootCmd.AddCommand(hostCmd) rootCmd.AddCommand(infoCmd) + rootCmd.AddCommand(initCmd) rootCmd.AddCommand(myIPCmd) rootCmd.AddCommand(searchCmd) rootCmd.AddCommand(statsCmd)