8 lines
134 B
Python
8 lines
134 B
Python
from django.urls import path
|
|
|
|
from .views import healthcheck
|
|
|
|
urlpatterns = [
|
|
path("health/", healthcheck, name="healthcheck"),
|
|
]
|