| 5 | |
| 6 | @dataclass(frozen=True) |
| 7 | class RuntimeModeReport: |
| 8 | mode: str |
| 9 | connected: bool |
| 10 | detail: str |
| 11 | |
| 12 | def as_text(self) -> str: |
| 13 | return f'mode={self.mode}\nconnected={self.connected}\ndetail={self.detail}' |
| 14 | |
| 15 | |
| 16 | def run_remote_mode(target: str) -> RuntimeModeReport: |
no outgoing calls
no test coverage detected