thirdparty/google_appengine/lib/django/examples/urls.py
changeset 109 620f9b141567
equal deleted inserted replaced
108:261778de26ff 109:620f9b141567
       
     1 from django.conf.urls.defaults import *
       
     2 
       
     3 urlpatterns = patterns('',
       
     4     (r'^$', 'examples.views.index'),
       
     5     (r'^hello/', include('examples.hello.urls')),
       
     6 )