generated from erangel1/generic-template
8 lines
146 B
Python
8 lines
146 B
Python
from django.urls import path
|
|
|
|
from .views import HealthCheckView
|
|
|
|
urlpatterns = [
|
|
path("", HealthCheckView.as_view(), name="health-check"),
|
|
]
|