thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 27 Jun 2009 22:11:48 +0200
changeset 2427 0dee663d6582
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed docstring in Document Logic.

from django.conf.urls.defaults import *

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