diff options
Diffstat (limited to 'novactl/main.go')
| -rw-r--r-- | novactl/main.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/novactl/main.go b/novactl/main.go deleted file mode 100644 index 0939961..0000000 --- a/novactl/main.go +++ /dev/null @@ -1,23 +0,0 @@ -package main - -import ( - "github.com/discordnova/nova/novactl/cmd" - "github.com/rs/zerolog" - "github.com/rs/zerolog/log" - "github.com/spf13/cobra" - "os" -) - -func main() { - log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr}) - - rootCommand := &cobra.Command{ - Use: "novactl", - Short: "A tool to interact with a nova cluster", - TraverseChildren: true, - } - rootCommand.AddCommand(cmd.VersionCommand) - rootCommand.AddCommand(cmd.InitializeCommand) - rootCommand.AddCommand(cmd.ClusterCommand) - _ = rootCommand.Execute() -} |
