view bns_website/videos/urls.py @ 90:f92545cd3ee0

Adding a license and README file.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Nov 2011 20:25:29 -0600
parents a0d3bc630ebd
children
line wrap: on
line source
"""
URLs for the videos application.

"""
from django.conf.urls.defaults import *

urlpatterns = patterns('videos.views',
    url(r'^$', 'index', name='videos'),
)