File: urls.py

package info (click to toggle)
python-django-health-check 3.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 452 kB
  • sloc: python: 1,617; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 176 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from django.urls import path

from health_check.views import MainView

app_name = "health_check"

urlpatterns = [
    path("", MainView.as_view(), name="health_check_home"),
]