Simple API for connecting bots.
[redakcja.git] / src / redakcja / api / urls.py
1 from django.urls import include, path
2 from . import views
3
4
5 urlpatterns = [
6     path('documents/', include('documents.api.urls')),
7
8     path('me/', views.MeView.as_view()),
9 ]