thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Sun, 10 May 2009 02:29:07 +0200
changeset 2305 eb4d331d41aa
parent 109 620f9b141567
permissions -rwxr-xr-x
Add .git to the .hgignore file

from django.conf.urls.defaults import *

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