mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 19:09:16 +02:00
11 lines
194 B
Python
11 lines
194 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(
|
|
r'libraries',
|
|
views.LibraryViewSet,
|
|
'libraries')
|
|
|
|
urlpatterns = router.urls
|