mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 17:29:17 +02:00
8 lines
198 B
Python
8 lines
198 B
Python
from funkwhale_api.common import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.OptionalSlashRouter()
|
|
router.register(r"listenings", views.ListeningViewSet, "listenings")
|
|
|
|
urlpatterns = router.urls
|