bgneal@285: """ bgneal@285: URLs for the oembed application. bgneal@285: """ bgneal@285: from django.conf.urls.defaults import * bgneal@285: bgneal@285: urlpatterns = patterns('oembed.views', bgneal@285: url(r'^fetch/$', 'fetch_media', name='oembed-fetch_media'), bgneal@285: )