This commit is contained in:
Waylon S. Walker 2025-07-03 09:48:05 -05:00
commit 48c6176c47
12 changed files with 1971 additions and 0 deletions

7
dependencies.py Normal file
View file

@ -0,0 +1,7 @@
from sqlmodel import Session
from database import engine
def get_session():
with Session(engine) as session:
yield session