9 lines
165 B
Python
9 lines
165 B
Python
|
|
"""SQLAlchemy declarative base."""
|
||
|
|
|
||
|
|
from sqlalchemy.orm import DeclarativeBase
|
||
|
|
|
||
|
|
|
||
|
|
class Base(DeclarativeBase):
|
||
|
|
"""Base class for all database models."""
|
||
|
|
pass
|