mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 14:09:16 +02:00
8 lines
185 B
Python
8 lines
185 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(r"listenings", views.ListeningViewSet, "listenings")
|
|
|
|
urlpatterns = router.urls
|