mirror of
https://github.com/HyPnoTiiK/stream-fusion.git
synced 2026-07-28 15:02:46 +00:00
9 lines
183 B
Python
9 lines
183 B
Python
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
from stream_fusion.services.postgresql.meta import meta
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
"""Base for all models."""
|
|
|
|
metadata = meta
|