thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 03 Apr 2009 17:09:34 +0000
changeset 2066 1855c783934f
parent 109 620f9b141567
permissions -rwxr-xr-x
Add missing docstrings to main.py and settings.py. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.conf.urls.defaults import *

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