- 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
12 lines
323 B
Python
12 lines
323 B
Python
from __future__ import annotations
|
|
|
|
import warnings
|
|
|
|
from .protocol import SEND_EOF, Protocol as Connection, Side, State # noqa: F401
|
|
|
|
|
|
warnings.warn( # deprecated in 11.0 - 2023-04-02
|
|
"websockets.connection was renamed to websockets.protocol "
|
|
"and Connection was renamed to Protocol",
|
|
DeprecationWarning,
|
|
)
|