from django.urls import path

from core.health.views import health_view

urlpatterns = [
    path("", health_view, name="health"),
]
