mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:49:16 +02:00
8 lines
183 B
Python
8 lines
183 B
Python
from funkwhale_api.common import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.OptionalSlashRouter()
|
|
router.register(r"users", views.UserViewSet, "users")
|
|
|
|
urlpatterns = router.urls
|