add .gitignore file

This commit is contained in:
andrei-mihnea-cerbu
2024-01-09 00:01:42 +02:00
parent 132c37aaf4
commit 9b183e5366
31 changed files with 38 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
from pydantic import BaseModel
class Message(BaseModel):
text: str
sender_id: int
receiver_id: int
+5
View File
@@ -0,0 +1,5 @@
from pydantic import BaseModel
class User(BaseModel):
id: int
username: str