Add consists API

This commit is contained in:
2022-04-02 23:31:32 +02:00
parent b598e38f70
commit faf44d7c0c
5 changed files with 57 additions and 3 deletions

6
dcc/consist/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from consist.views import ConsistList
urlpatterns = [
path("list", ConsistList.as_view()),
]