(cfg: Config, path: str)
| 33 | |
| 34 | |
| 35 | def start_cli_session(cfg: Config, path: str): |
| 36 | # TODO: Convert calling session subprocess to async. |
| 37 | return SyncResource(start_cli_session_sync(cfg, path)) |
| 38 | |
| 39 | |
| 40 | @dataclasses.dataclass(slots=True) |
no test coverage detected