mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-26 02:03:43 +03:00
9 lines
237 B
Python
9 lines
237 B
Python
from django.urls import path, include
|
|
|
|
from checker.api.views import ListCreateDocxApiView
|
|
|
|
urlpatterns = [
|
|
path("health/", include("health_check.urls")),
|
|
path("docx/", ListCreateDocxApiView.as_view(), name="list_create_docx")
|
|
]
|