Started (incomplete) implementation of stream verification scheduler and endpoints
All checks were successful
AWS Deploy on Push / build (push) Successful in 5m18s

This commit is contained in:
2025-06-17 17:12:39 -05:00
parent abb467749b
commit a42d4c30a6
14 changed files with 1066 additions and 33 deletions

View File

@@ -1,6 +1,7 @@
import os
import boto3
from requests import Session
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
@@ -53,3 +54,8 @@ def get_db():
yield db
finally:
db.close()
def get_db_session() -> Session:
"""Get a direct database session (non-generator version)"""
return SessionLocal()