from django.urls import path from .views import CategoryListAPI, CategoryDetailAPI from .views import SpanListAPI, SpanDetailAPI from .views import TextLabelListAPI, TextLabelDetailAPI from .views import RelationList, RelationDetail urlpatterns = [ path(route="annotation_relations", view=RelationList.as_view(), name="relation_list"), path(route="annotation_relations/", view=RelationDetail.as_view(), name="relation_detail"), path(route="examples//categories", view=CategoryListAPI.as_view(), name="category_list"), path( route="examples//categories/", view=CategoryDetailAPI.as_view(), name="category_detail", ), path(route="examples//spans", view=SpanListAPI.as_view(), name="span_list"), path(route="examples//spans/", view=SpanDetailAPI.as_view(), name="span_detail"), path(route="examples//texts", view=TextLabelListAPI.as_view(), name="text_list"), path( route="examples//texts/", view=TextLabelDetailAPI.as_view(), name="text_detail", ), ]