arifRB's picture
Deploy GapGuide backend (Docker)
ffd36e0 verified
Raw
History Blame Contribute Delete
313 Bytes
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'),
]