| 160 | |
| 161 | @dataclass |
| 162 | class RequestResponse(Request): |
| 163 | protocol: str |
| 164 | verb: str |
| 165 | host: str |
| 166 | port: int | None |
| 167 | url: str |
| 168 | request_headers: dict[str, Any] |
| 169 | input: Any |
| 170 | status: int |
| 171 | response_headers: dict[str, Any] |
| 172 | output: bytes |
| 173 | |
| 174 | |
| 175 | class Connection: |
no outgoing calls
no test coverage detected
searching dependent graphs…