Technical Details: https://blog.mxgame.top/2025/11/22/An-On-Demand-Design-Within-SQLModel/
7 lines
111 B
Python
7 lines
111 B
Python
from typing import Any, TypedDict
|
|
|
|
|
|
class ChatEvent(TypedDict):
|
|
event: str
|
|
data: dict[str, Any] | None
|