thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 28 Aug 2009 11:47:32 -0700
changeset 2834 03a1602c63f1
parent 109 620f9b141567
permissions -rwxr-xr-x
Hook up the new per-request value storage

from django.conf.urls.defaults import *

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