thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 13 Dec 2008 11:02:08 +0000
changeset 727 ddf44af087a0
parent 109 620f9b141567
permissions -rwxr-xr-x
Using getForCurrentAccount where possible due to comments on r1309. Patch by: Lennard de Rijk

from django.conf.urls.defaults import *

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