mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 17:59:29 +02:00
9 lines
223 B
Python
9 lines
223 B
Python
from django.conf.urls import include, url
|
|
from . import views
|
|
|
|
from rest_framework import routers
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(r"tracks", views.TrackFavoriteViewSet, "tracks")
|
|
|
|
urlpatterns = router.urls
|