src/restapi/urls.py
author durandn
Wed, 15 Jun 2016 15:44:17 +0200
changeset 16 ca998c745cdf
parent 6 37baf9d13f32
permissions -rw-r--r--
example interface for merge form

from django.conf.urls import url
from . import views

urlpatterns = [
	url(r'^$', views.index, name='index'),
	url(r'annotation$', views.annotation_list),
	url(r'annotation/(?P<pk>[0-9]+)/$', views.get)
]