8 lines
149 B
Python
8 lines
149 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from sqlalchemy.orm import DeclarativeBase
|
||
|
|
|
||
|
|
|
||
|
|
class Base(DeclarativeBase):
|
||
|
|
"""SQLAlchemy declarative base."""
|