Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
5282 commits behind the upstream repository.
urls.py 198 B
from funkwhale_api.common import routers

from . import views

router = routers.OptionalSlashRouter()
router.register(r"listenings", views.ListeningViewSet, "listenings")

urlpatterns = router.urls