mirror of
https://github.com/django/django.git
synced 2025-07-18 08:39:15 +00:00
Thanks to Oskar Persson for the report. Backport of 41a3b3d18647b258331104520e76f977406c590d from master
8 lines
117 B
Python
8 lines
117 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('fileresponse/', views.file_response),
|
|
]
|