feat(chat): support public channel chat
This commit is contained in:
10
app/models/chat.py
Normal file
10
app/models/chat.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class ChatEvent(BaseModel):
|
||||
event: str
|
||||
data: dict[str, Any] | None = None
|
||||
Reference in New Issue
Block a user