thirdparty/google_appengine/lib/django/examples/urls.py
author Tim Ansell <mithro@gmail.com>
Wed, 01 Oct 2008 07:26:45 +0000
changeset 243 b0eeea9d6da6
parent 109 620f9b141567
permissions -rwxr-xr-x
Tool to graph the data model.

from django.conf.urls.defaults import *

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