You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
Currently, the CLI argument parsing is scattered across different files with each implementing its own parser logic. This makes the codebase harder to maintain, test, and extend.
We should refactor the CLI structure to use the Command Pattern, This would:
Benefits:
Provide a single consistent way to handle CLI commands
Make adding new commands easier without modifying existing code
Improve testability by isolating command logic
Reduce code duplication
Make the codebase more maintainable
The text was updated successfully, but these errors were encountered:
Description:
Currently, the CLI argument parsing is scattered across different files with each implementing its own parser logic. This makes the codebase harder to maintain, test, and extend.
We should refactor the CLI structure to use the Command Pattern, This would:
Benefits:
The text was updated successfully, but these errors were encountered: