Initial commit

This commit is contained in:
2025-10-29 14:37:08 +08:00
commit 034509181f
4131 changed files with 555736 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from typing import Protocol
class HTTPProtocol(Protocol):
"""Used for providing static type-checking when parsing through the http protocol"""
def on_message_begin() -> None: ...
def on_url(url: bytes) -> None: ...
def on_header(name: bytes, value: bytes) -> None: ...
def on_headers_complete() -> None: ...
def on_body(body: bytes) -> None: ...
def on_message_complete() -> None: ...
def on_chunk_header() -> None: ...
def on_chunk_complete() -> None: ...
def on_status(status: bytes) -> None: ...