7 lines
108 B
Python
7 lines
108 B
Python
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
"""SQLAlchemy ORM Base。"""
|
|
|