| 44 | |
| 45 | @dataclass |
| 46 | class SessionLaunch: |
| 47 | root_pid: int |
| 48 | pgid: int |
| 49 | master_fd: int |
| 50 | ready: bool |
| 51 | input_ready: bool |
| 52 | excerpt: str | None |
| 53 | seconds_to_visible: float | None |
| 54 | seconds_to_input_ready: float | None |
| 55 | buffer_excerpt: str | None |
| 56 | |
| 57 | |
| 58 | @dataclass |
no outgoing calls
no test coverage detected