Display the main menu.
(projects: list[tuple[str, Path]])
| 80 | |
| 81 | |
| 82 | def display_menu(projects: list[tuple[str, Path]]) -> None: |
| 83 | """Display the main menu.""" |
| 84 | print("\n" + "=" * 50) |
| 85 | print(" AutoForge - Autonomous Coding Agent") |
| 86 | print("=" * 50) |
| 87 | print("\n[1] Create new project") |
| 88 | |
| 89 | if projects: |
| 90 | print("[2] Continue existing project") |
| 91 | |
| 92 | print("[q] Quit") |
| 93 | print() |
| 94 | |
| 95 | |
| 96 | def display_projects(projects: list[tuple[str, Path]]) -> None: |