thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 06 Jun 2009 19:42:54 +0200
changeset 2403 92cfd29a363d
parent 109 620f9b141567
permissions -rwxr-xr-x
Removed authors from 'empty' __init__.py files.

from django.conf.urls.defaults import *

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