mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 15:59:18 +02:00
7 lines
169 B
Python
7 lines
169 B
Python
from rest_framework import routers
|
|
from . import views
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(r'users', views.UserViewSet, 'users')
|
|
|
|
urlpatterns = router.urls
|