thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 11 Jul 2009 23:15:22 +0200
changeset 2594 dd300af0e7df
parent 109 620f9b141567
permissions -rwxr-xr-x
Added empty Tasks package and queue.yaml. Also reserved an admin only URL space for use by Tasks.

from django.conf.urls.defaults import *

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