kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
12 wiersze
194 B
Python
12 wiersze
194 B
Python
|
|
from rest_framework import routers
|
||
|
|
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
router = routers.SimpleRouter()
|
||
|
|
router.register(
|
||
|
|
r'libraries',
|
||
|
|
views.LibraryViewSet,
|
||
|
|
'libraries')
|
||
|
|
|
||
|
|
urlpatterns = router.urls
|