More changes brought through testing.

This commit is contained in:
Yaro Kasear 2025-09-02 12:27:51 -05:00
parent 40e727f5bf
commit c22ecf44ec
9 changed files with 149 additions and 11 deletions

6
test_app/db.py Normal file
View file

@ -0,0 +1,6 @@
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, declarative_base
engine = create_engine('sqlite:///test.db', echo=True)
SessionLocal = sessionmaker(bind=engine)
Base = declarative_base()