service_man/api/models/__init__.py

8 lines
85 B
Python

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