mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 13:09:17 +02:00
8 lines
222 B
Python
8 lines
222 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
|