src/restapi/urls.py
changeset 6 37baf9d13f32
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/restapi/urls.py	Tue May 31 17:46:32 2016 +0200
@@ -0,0 +1,8 @@
+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)
+]
\ No newline at end of file