thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 28 Nov 2008 23:08:14 +0000
changeset 604 2552e82258ed
parent 109 620f9b141567
permissions -rwxr-xr-x
Added Lennard to the AUTHORS file Long overdue patch, perhaps we should add a test to the test suite to check if all authors are propertly credited in AUTHORS... Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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