| 55 | |
| 56 | @dataclass |
| 57 | class HTTPResponse(AnyHTTPResponse): |
| 58 | request_method: HTTPMethod = field(kw_only=True) |
| 59 | status_code: int = field(kw_only=True) |
| 60 | content: bytes = field(kw_only=True) |
| 61 | text: str = field(kw_only=True) |
| 62 | headers: dict[str, str] = field(kw_only=True) |
| 63 | |
| 64 | class OAHTTPSession(ABC): |
| 65 | error_handling: bool = True |
no outgoing calls
no test coverage detected