mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
7 lines
174 B
Python
7 lines
174 B
Python
from typing import Any, Dict
|
|
|
|
class APIRequestor:
|
|
def interpret_response(
|
|
self, http_body: str, http_status: int, http_headers: Dict[str, Any]
|
|
) -> None: ...
|