Move User to own model and include CRUD

This commit is contained in:
Sebastiaan
2025-05-23 18:07:31 +02:00
parent 87ae82f377
commit 9b7a34944d
6 changed files with 198 additions and 171 deletions

View File

@@ -0,0 +1,23 @@
from sqlmodel import SQLModel
from uuid import UUID as RowId
# region SQLModel base class ###################################################
class BaseSQLModel(SQLModel):
pass
# endregion
# region Generic message #######################################################
class Message(SQLModel):
message: str
# #############################################################################
# endregion