Files
Andrey K. Choi 9af84db429
Some checks reported errors
continuous-integration/drone/push Build encountered an error
MVP ready. Fully functional (registration? moderation, profiles vew)
2025-08-12 21:55:56 +09:00

7 lines
185 B
Python

from __future__ import annotations
from sqlalchemy.orm import DeclarativeBase
class Base(DeclarativeBase):
"""Базовый класс для всех моделей."""
pass