MukeshKapoor25's picture
feat(database): Add comprehensive PostgreSQL connection management and configuration
b41273c
raw
history blame contribute delete
166 Bytes
"""
Shared database configuration and base classes.
"""
from sqlalchemy.orm import declarative_base
# Shared Base for all SQLAlchemy models
Base = declarative_base()