9 lines
271 B
Python
Executable File
9 lines
271 B
Python
Executable File
from sqlalchemy.ext.asyncio import AsyncAttrs
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
class Base(AsyncAttrs, DeclarativeBase):
|
|
"""
|
|
Base class for all SQLAlchemy models.
|
|
Includes AsyncAttrs to support async attribute access (lazy loading).
|
|
"""
|
|
pass |