5 lines
194 B
Python
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() |