1
0
mirror of https://github.com/django/django.git synced 2025-02-04 06:30:02 +00:00

8 lines
169 B
Python
Raw Normal View History

from django.conf.urls import patterns, url
from django.http import HttpResponse
urlpatterns = patterns('',
url(r'^$', lambda req: HttpResponse('example view')),
)