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

6 lines
83 B
Python
Raw Normal View History

2024-03-31 21:07:59 +03:00
from sqlalchemy.orm import DeclarativeBase
class Base(DeclarativeBase):
2024-04-08 23:55:30 +03:00
pass