()
| 80 | print(char * width) |
| 81 | |
| 82 | def require_db(): |
| 83 | if not DB_PATH.exists(): |
| 84 | print("Database not found. Run: python cli.py scan") |
| 85 | sys.exit(1) |
| 86 | return sqlite3.connect(DB_PATH) |
| 87 | |
| 88 | |
| 89 | # ── Commands ────────────────────────────────────────────────────────────────── |