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