8 lines
133 B
Python
8 lines
133 B
Python
from django.urls import path
|
|
|
|
from apps.health.views import health_view
|
|
|
|
urlpatterns = [
|
|
path("", health_view, name="health"),
|
|
]
|