feat(cli): add check command

This commit is contained in:
Patryk Hegenberg 2025-01-31 17:56:02 +01:00
parent 3519efeccc
commit 11b8541630
14 changed files with 123 additions and 1 deletions

View file

@ -43,6 +43,8 @@ func init() {
updateCmd.Flags().StringP("manager", "m", "os", "The package manager you want to update packages with. (Options: os|homebrew|pipx|flatpak)")
checkCmd.Flags().StringP("manager", "m", "os", "The package manager you want to check for a packages with. (Options: os|homebrew|pipx|flatpak)")
packageCmd.AddCommand(
addCmd,
deleteCmd,
@ -57,6 +59,7 @@ func init() {
updateCmd,
updateAllCmd,
historyCmd,
checkCmd,
)
}