AnalyzrAI / config /api_urls.py
thejagstudio's picture
Upload 92 files
0310410 verified
raw
history blame contribute delete
563 Bytes
from django.http import JsonResponse
from django.urls import include, path
def not_implemented(_request):
return JsonResponse({"detail": "Module scaffolded; endpoint not implemented yet."}, status=501)
urlpatterns = [
path("", include("apps.core.urls")),
path("copilot/", include("apps.copilot.urls")),
path("reporting/", not_implemented, name="api-reporting-placeholder"),
path("forecasting/", not_implemented, name="api-forecasting-placeholder"),
path("variance/", not_implemented, name="api-variance-placeholder"),
]