thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 26 Feb 2009 16:54:08 +0000
changeset 1520 ac407f5b10dc
parent 109 620f9b141567
permissions -rwxr-xr-x
Add a normalizeAccount to logic.accounts Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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