# Django imports
from django.conf.urls import patterns, include, url

# LeakLess Monitor imports

urlpatterns = patterns('',
    url(r'^annotation_save/'        , 'Applications.Measure.Plot.Annotations.views.annotations_save'),
    url(r'^annotation_edit/'        , 'Applications.Measure.Plot.Annotations.views.annotations_edit'),
    url(r'^annotation_delete/'      , 'Applications.Measure.Plot.Annotations.views.annotations_delete'),
)
