diff --git a/cli/app.go b/cli/app.go index 2f6f736..5cb2231 100644 --- a/cli/app.go +++ b/cli/app.go @@ -12,7 +12,9 @@ type AppInterface interface { func NewApp(defaultCommand Command) AppInterface { app := &App{ - commands: map[string]Command{}, + commands: map[string]Command{ + "version": &VersionCommand{}, + }, } app.AddCommand("default", defaultCommand) return app