view gpp/core/urls.py @ 142:f6904149a233

Forgot to add this file in r137.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Dec 2009 21:25:00 +0000
parents
children ab7830b067b3
line wrap: on
line source
"""
Urls for the core application.
"""
from django.conf.urls.defaults import *

urlpatterns = patterns('core.views',
    url(r'^markdown_help/$', 'markdown_help', name='core-markdown_help'),
)