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

10 lines
149 B
Python
Raw Permalink Normal View History

2024-03-31 21:20:36 +03:00
from .base import Base
2024-04-10 00:33:31 +03:00
from .company import CompanyModel
2024-03-31 21:20:36 +03:00
from .user import UserModel
__all__ = (
"Base",
"UserModel",
2024-04-10 00:33:31 +03:00
"CompanyModel",
2024-03-31 21:20:36 +03:00
)