(project_root: str)
| 337 | |
| 338 | |
| 339 | def project_status(project_root: str) -> ProjectStatusResponse: |
| 340 | return _send(ProjectStatusRequest(project_root=normalize_input_path(project_root))) # type: ignore[return-value] |
| 341 | |
| 342 | |
| 343 | def daemon_status() -> DaemonStatusResponse: |
nothing calls this directly
no test coverage detected