This commit is contained in:
andrei-mihnea-cerbu
2024-01-12 22:19:19 +02:00
parent 37b2c068b8
commit e65b05b451
59 changed files with 349 additions and 190 deletions
+9
View File
@@ -0,0 +1,9 @@
from pydantic import BaseModel
from datetime import datetime
class Message(BaseModel):
conversation: str
sender: int
receiver: int
timestamp: datetime