thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 18 Apr 2009 15:05:56 +0000
changeset 2218 84b0ce492cf5
parent 109 620f9b141567
permissions -rwxr-xr-x
Add a script to convert proposals. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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