2025-06-09 08:10:19 +00:00

5 lines
194 B
Python

# Import all the models to ensure they are registered with SQLAlchemy
from sqlalchemy.ext.declarative import declarative_base
# Create Base class for SQLAlchemy models
Base = declarative_base()