thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Fri, 01 May 2009 00:03:02 +0200
changeset 2288 b3f22d6ee467
parent 109 620f9b141567
permissions -rwxr-xr-x
Backed out changeset 571f2de51138 Test commit that was not meant to be committed. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'^$', 'examples.views.index'),
    (r'^hello/', include('examples.hello.urls')),
)