Spaces:
Sleeping
Sleeping
| 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"), | |
| ] | |