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

8 lines
95 B
Python

from .base import Base
from .user import UserModel
__all__ = (
"Base",
"UserModel",
)