2022-08-26 20:04:45 +03:00
|
|
|
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")
|
|
|
|
]
|