1
0
mirror of https://github.com/django/django.git synced 2025-01-23 16:50:41 +00:00
django/tests/wsgi/urls.py

13 lines
265 B
Python
Raw Normal View History

from django.conf.urls import url
from django.http import FileResponse, HttpResponse
def helloworld(request):
return HttpResponse("Hello World!")
2016-11-12 20:41:23 +03:30
urlpatterns = [
url("^$", helloworld),
url(r'^file/$', lambda x: FileResponse(open(__file__, 'rb'))),
]