2025-06-19 17:47:24 +00:00

7 lines
158 B
Python

"""
Database base configuration.
"""
from sqlalchemy.ext.declarative import declarative_base
# SQLAlchemy Base class for all models
Base = declarative_base()