thirdparty/google_appengine/lib/django/examples/urls.py
author Tim Ansell <mithro@gmail.com>
Wed, 15 Oct 2008 18:03:21 +0000
changeset 340 f1522bafa958
parent 109 620f9b141567
permissions -rwxr-xr-x
Make this file excutable by default.

from django.conf.urls.defaults import *

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