2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.http import FileResponse, HttpResponse
|
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 = [
|
|
|
|
url("^$", helloworld),
|
2015-01-04 01:06:24 +08:00
|
|
|
url(r'^file/$', lambda x: FileResponse(open(__file__, 'rb'))),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|