mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-22 08:16:35 +03:00
11 lines
431 B
Python
11 lines
431 B
Python
from django.urls import path, include
|
|
|
|
from checker.api.views import ListCreateDocxApiView, RetireDocxSerializer, GetDocxState
|
|
|
|
urlpatterns = [
|
|
path("health/", include("health_check.urls")),
|
|
path("docx/", ListCreateDocxApiView.as_view(), name="list_create_docx"),
|
|
path("docx/<uuid:uuid>", RetireDocxSerializer.as_view(), name="get_docx"),
|
|
path("state/<uuid:uuid>", GetDocxState.as_view(), name="get_state_docx"),
|
|
]
|