mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 13:19:16 +02:00
8 lines
226 B
Python
8 lines
226 B
Python
from django.conf.urls import include, url
|
|
from . import views
|
|
|
|
from rest_framework import routers
|
|
router = routers.SimpleRouter()
|
|
router.register(r'listenings', views.ListeningViewSet, 'listenings')
|
|
|
|
urlpatterns = router.urls
|