()
| 341 | |
| 342 | |
| 343 | def daemon_status() -> DaemonStatusResponse: |
| 344 | from .protocol import DaemonStatusRequest |
| 345 | |
| 346 | return _send(DaemonStatusRequest()) # type: ignore[return-value] |
| 347 | |
| 348 | |
| 349 | def remove_project(project_root: str) -> RemoveProjectResponse: |
nothing calls this directly
no test coverage detected