thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Fri, 08 May 2009 14:58:19 +0200
changeset 2299 b0e67a2eafff
parent 109 620f9b141567
permissions -rwxr-xr-x
Add Marcelo to AUTHORS file and fix typo

from django.conf.urls.defaults import *

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