movie-night-api/users/viewsets/__init__.py

5 lines
105 B
Python
Raw Normal View History

from .group import GroupViewSet
from .user import UserViewSet
__all__ = ["GroupViewSet", "UserViewSet"]