django/tests/builtin_server/urls.py

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

8 lines
117 B
Python
Raw Normal View History

from django.urls import path
from . import views
urlpatterns = [
path("fileresponse/", views.file_response),
]