bgneal@60: """ bgneal@60: URLs for the videos application. bgneal@60: bgneal@60: """ bgneal@60: from django.conf.urls.defaults import * bgneal@60: bgneal@60: urlpatterns = patterns('videos.views', bgneal@60: url(r'^$', 'index', name='videos'), bgneal@60: )