mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
6 lines
168 B
Python
6 lines
168 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:
|
|
...
|