versionsapi: implement rm 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:53:59 +01:00
parent 53cc63362f
commit 0011d960f7
4 changed files with 800 additions and 19 deletions

View file

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