thirdparty/google_appengine/lib/django/examples/urls.py
author Tim Ansell <mithro@gmail.com>
Wed, 15 Oct 2008 18:06:07 +0000
changeset 341 cad57d104bc7
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed the evil black logo.

from django.conf.urls.defaults import *

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