thirdparty/google_appengine/lib/django/examples/urls.py
changeset 2878 cf4b80992451
parent 2871 e440e94a874b
parent 2877 8bbdc95f87f8
child 2879 cb0f9b4646aa
equal deleted inserted replaced
2871:e440e94a874b 2878:cf4b80992451
     1 from django.conf.urls.defaults import *
       
     2 
       
     3 urlpatterns = patterns('',
       
     4     (r'^$', 'examples.views.index'),
       
     5     (r'^hello/', include('examples.hello.urls')),
       
     6 )