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