thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 13 Dec 2008 14:55:00 +0000
changeset 737 4c78ee183eb6
parent 109 620f9b141567
permissions -rwxr-xr-x
Notification property has_been_read changed into unread Due to comments on r1309. Patch By: Lennard de Rijk

from django.conf.urls.defaults import *

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