thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Tue, 16 Sep 2008 17:05:07 +0000
changeset 155 682c398c5aa7
parent 109 620f9b141567
permissions -rwxr-xr-x
Oops, this should have been part of the r577 commit.

from django.conf.urls.defaults import *

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