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