initial commit

This commit is contained in:
2025-09-11 18:24:36 +00:00
commit ba58bb60ec
16 changed files with 335 additions and 0 deletions

7
backend/models.py Normal file
View File

@@ -0,0 +1,7 @@
from typing import Optional
from pydantic import BaseModel
class MsgPayload(BaseModel):
msg_id: Optional[int]
msg_name: str