10 lines
240 B
Python
10 lines
240 B
Python
"""SQLAlchemy persistence models.
|
|
|
|
Importing this package registers every model on ``Base.metadata``, which the
|
|
Alembic environment relies on.
|
|
"""
|
|
|
|
from photo_pipeline.models.assets import Asset, AssetPath
|
|
|
|
__all__ = ["Asset", "AssetPath"]
|