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
Cleanup main.rs to be minimal and focused:
- Simplified imports (removed redundant Command and Error imports)
- Reordered functions: main() first, then run_app(), then helpers
- Used fully qualified paths in check_gh_cli_installed
- Maintained clean 69-line structure
Main.rs now serves as clean entry point with:
- Module declarations (alphabetical)
- Re-exports for cross-module use
- Entry point (main, run_app)
- Helper utilities (executable_name, check_gh_cli_installed)
All 52 tests pass.
0 commit comments