8 lines
185 B
Python
8 lines
185 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
router = routers.SimpleRouter()
|
|
router.register(r"listenings", views.ListeningViewSet, "listenings")
|
|
|
|
urlpatterns = router.urls
|