"""Root URL configuration. The public API surface is specified contract-first in ``api/openapi.yaml`` (this milestone); the viewset implementations land in milestone 3 and will be mounted under ``/api/v1/``. A health endpoint is exposed so deployment tooling can probe the schema-bearing service immediately. """ from django.contrib import admin from django.http import JsonResponse from django.urls import path def health(request): return JsonResponse({"status": "ok", "service": "fablepool-backend"}) urlpatterns = [ path("admin/", admin.site.urls), path("healthz", health, name="health"), ]