thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Fri, 13 Feb 2009 21:54:35 +0000
changeset 1306 dffefa486493
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix ToS link s/Terms/Google App Engine Terms/ Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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