from django.urls import path from .views import healthcheck urlpatterns = [ path("health/", healthcheck, name="healthcheck"), ]