Files
LabGraph/backend/apps/health/urls.py
T

8 lines
146 B
Python

from django.urls import path
from .views import HealthCheckView
urlpatterns = [
path("", HealthCheckView.as_view(), name="health-check"),
]