versionsapi: implement list cmd in cli

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2022-12-29 17:48:10 +01:00
parent 777c9406fd
commit 53cc63362f
2 changed files with 206 additions and 0 deletions

View file

@ -45,6 +45,7 @@ func newRootCmd() *cobra.Command {
rootCmd.AddCommand(newAddCmd())
rootCmd.AddCommand(newLatestCmd())
rootCmd.AddCommand(newListCmd())
return rootCmd
}