7 lines
155 B
Python
7 lines
155 B
Python
from api.utils import register_in_app
|
|
from .viewsets import UserViewSet
|
|
|
|
|
|
def register_viewsets(router):
|
|
register_in_app(router, 'users', UserViewSet)
|