Files
hoopscout/apps/core/urls.py

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"),
]