backend/conf/api_router.py

9 lines
237 B
Python
Raw Normal View History

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")
]