2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
2013-06-04 13:55:20 +08:00
|
|
|
from django.http import HttpResponse
|
|
|
|
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2013-06-04 13:55:20 +08:00
|
|
|
url(r'^$', lambda req: HttpResponse('example view')),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|