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