thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Sat, 07 Feb 2009 00:21:23 +0000
changeset 1233 fbe95d6b432e
parent 109 620f9b141567
permissions -rwxr-xr-x
Hide *.pyc files in trunk/ from 'svn status' output. Patch by: Todd Larsen Review by: to-be-reviewed

from django.conf.urls.defaults import *

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