feat(api): add auth tag for authentication bootstrap endpoints in OpenAPI specification

This commit is contained in:
Abhimanyu Saharan
2026-02-15 02:32:05 +05:30
parent d906e9a770
commit 7e147ee608

View File

@@ -41,6 +41,12 @@ if TYPE_CHECKING:
configure_logging()
logger = get_logger(__name__)
OPENAPI_TAGS = [
{
"name": "auth",
"description": (
"Authentication bootstrap endpoints for resolving caller identity and session context."
),
},
{
"name": "health",
"description": (