- 8 DB models (services, incidents, monitors, subscribers, etc.) - Full CRUD API for services, incidents, monitors - Public status page with live data - Incident detail page with timeline - API key authentication - Uptime monitoring scheduler - 13 tests passing - TECHNICAL_DESIGN.md with full spec
15 lines
542 B
Python
15 lines
542 B
Python
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: ...
|