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