thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 15 Dec 2008 00:22:50 +0000
changeset 745 ed3b545a9c14
parent 109 620f9b141567
permissions -rwxr-xr-x
Remove not used TYPE_NAME, TYPE_NAME_SHORT and TYPE_NAME_PLURAL consts in all Group models. Patch by: Pawel Solyga

from django.conf.urls.defaults import *

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