Swagger UI Ready

This commit is contained in:
2026-08-05 18:20:53 -05:00
parent 4029e67e78
commit 404157421a
10 changed files with 610 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from . import views
app_name = 'api'
urlpatterns = [
path('api/docs/', views.api_docs, name='docs'),
path('api/docs/spec/', views.api_docs_spec, name='docs_spec'),
]