Simple API for connecting bots.
[redakcja.git] / src / redakcja / api / urls.py
diff --git a/src/redakcja/api/urls.py b/src/redakcja/api/urls.py
new file mode 100644 (file)
index 0000000..7f6e1bb
--- /dev/null
@@ -0,0 +1,9 @@
+from django.urls import include, path
+from . import views
+
+
+urlpatterns = [
+    path('documents/', include('documents.api.urls')),
+
+    path('me/', views.MeView.as_view()),
+]