7 lines
163 B
Python
7 lines
163 B
Python
from django.urls import path
|
|
|
|
from apps.common.views import HealthCheckView
|
|
|
|
urlpatterns = [
|
|
path("health/", HealthCheckView.as_view(), name="health-check"),
|
|
] |