Some checks reported errors
continuous-integration/drone/push Build encountered an error
7 lines
185 B
Python
7 lines
185 B
Python
from __future__ import annotations
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
class Base(DeclarativeBase):
|
|
"""Базовый класс для всех моделей."""
|
|
pass
|