2024-02-11 23:53:51 +00:00

10 lines
158 B
Python

# -*- encoding: utf-8 -*-
from django.urls import path
from .views import HealthCheck
urlpatterns = [
path("", HealthCheck.as_view(), name="check"),
]