thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 28 Jan 2009 23:49:45 +0000
changeset 1054 1a802e5183b9
parent 109 620f9b141567
permissions -rwxr-xr-x
Add forgotten __init__.py to pymox Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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