thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 20 Nov 2008 22:44:22 +0000
changeset 523 46039afb63b6
parent 109 620f9b141567
permissions -rwxr-xr-x
Removed one more unneccesary module Last commit reminded me that this one is obsolete too.

from django.conf.urls.defaults import *

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