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