view bns_website/videos/urls.py @ 94:48757f4e598b

Reformatted license file; added newlines.
author Brian Neal <bgneal@gmail.com>
date Tue, 29 Nov 2011 19:05:30 -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'),
)