service_man/api/models/__init__.py

8 lines
85 B
Python
Raw Normal View History

2024-03-06 03:59:16 +03:00
from .base import Base
from .user import User
__all__ = (
"Base",
"User",
)