from django.urls import path from .views import GapAnalysisView # Recommendations are mounted at /api/recommendations/ via # apps.analysis.urls_recommendations — do not re-add them here or reverse() # will hit an ambiguous name. urlpatterns = [ path('', GapAnalysisView.as_view(), name='gap-analysis'), ]