django1/tests/redirects_tests/urls.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
131 B
Python
Raw Normal View History

from django.http import HttpResponse
from django.urls import path
urlpatterns = [
path("", lambda req: HttpResponse("OK")),
]