Initial commit

This commit is contained in:
2024-09-04 05:43:59 +00:00
commit fda3040fc2
1774 changed files with 23017 additions and 0 deletions

15
src/libs/models.py Normal file
View File

@@ -0,0 +1,15 @@
# Python imports
from typing import Optional
# Lib imports
from sqlmodel import SQLModel, Field
# Application imports
class User(SQLModel, table = True):
id: Optional[int] = Field(default = None, primary_key = True)
name: str
password: str
email: Optional[str] = None