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