thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 28 Mar 2009 02:21:48 +0000
changeset 2024 43e5b515b71d
parent 109 620f9b141567
permissions -rwxr-xr-x
Add a script to start an interactive shell with remote api Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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