Add new models and database manager

This commit is contained in:
2024-02-20 14:46:43 +01:00
parent eba563ed90
commit 3c3761ba7b
4 changed files with 35 additions and 0 deletions

3
src/models/Base.py Normal file
View File

@@ -0,0 +1,3 @@
from sqlalchemy.orm import declarative_base
Base = declarative_base()