thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 10 Nov 2008 00:40:39 +0000
changeset 457 6cf15fa24263
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed a typo in id_user

from django.conf.urls.defaults import *

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