mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 19:29:20 +02:00
8 lines
170 B
Python
8 lines
170 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(r"users", views.UserViewSet, "users")
|
|
|
|
urlpatterns = router.urls
|