from django.conf.urls import url, include from django.urls import path from rest_framework.routers import DefaultRouter from . import views from .views import circle_view, learningpath_view urlpatterns = [ path(r"api/circle//", circle_view, name="circle_view"), path(r"api/learningpath//", learningpath_view, name="learningpath_view"), ]