2015-01-28 12:35:27 +00:00
|
|
|
from django.http import FileResponse, HttpResponse
|
2018-12-07 22:52:28 +00:00
|
|
|
from django.urls import path
|
2011-10-22 04:30:10 +00:00
|
|
|
|
2013-11-02 21:34:05 +00:00
|
|
|
|
2011-10-22 04:30:10 +00:00
|
|
|
def helloworld(request):
|
|
|
|
return HttpResponse("Hello World!")
|
|
|
|
|
2016-11-12 17:11:23 +00:00
|
|
|
|
2014-04-02 00:46:34 +00:00
|
|
|
urlpatterns = [
|
2018-12-07 22:52:28 +00:00
|
|
|
path('', helloworld),
|
|
|
|
path('file/', lambda x: FileResponse(open(__file__, 'rb'))),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|