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