service_man/api/infrastructure/persistence/models/base.py

6 lines
82 B
Python
Raw Normal View History

2024-03-31 21:07:59 +03:00
from sqlalchemy.orm import DeclarativeBase
class Base(DeclarativeBase):
...