thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 16 Feb 2009 19:30:11 +0000
changeset 1362 31b2cb6b75d8
parent 109 620f9b141567
permissions -rwxr-xr-x
Seed in some orgs This is to facilitate testing of a 'slot allocation' ui. Patch by: SVerre Rabbelier

from django.conf.urls.defaults import *

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