9 lines
158 B
Python
9 lines
158 B
Python
from django.urls import path
|
|
|
|
from .views import health, home
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
path("health/", health, name="health"),
|
|
]
|