feat(cmd): add 'list' command to display managed files

Implements a new 'list' command that shows all files and directories managed by lnk, improving visibility and user experience.

fixes #4
This commit is contained in:
Yar Kravtsov
2025-05-26 05:57:45 +03:00
parent 69c1038f3e
commit 4a275ce4ca
6 changed files with 195 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ That's it.
rootCmd.AddCommand(newInitCmd())
rootCmd.AddCommand(newAddCmd())
rootCmd.AddCommand(newRemoveCmd())
rootCmd.AddCommand(newListCmd())
rootCmd.AddCommand(newStatusCmd())
rootCmd.AddCommand(newPushCmd())
rootCmd.AddCommand(newPullCmd())