funkwhale/api/funkwhale_api/history/urls.py

9 wiersze
185 B
Python
Czysty Zwykły widok Historia

from rest_framework import routers
2018-06-09 13:36:16 +00:00
2018-06-10 08:55:16 +00:00
from . import views
router = routers.SimpleRouter()
2018-06-09 13:36:16 +00:00
router.register(r"listenings", views.ListeningViewSet, "listenings")
urlpatterns = router.urls