File: urls.py

package info (click to toggle)
python-django-health-check 3.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 428 kB
  • sloc: python: 1,886; makefile: 6
file content (5 lines) | stat: -rw-r--r-- 104 bytes parent folder | download
1
2
3
4
5
from django.urls import include, path

urlpatterns = [
    path("ht/", include("health_check.urls")),
]