presenton/servers/fastapi/app_mcp/wrapper/list_layout.py
2025-08-02 09:19:42 +05:45

8 lines
239 B
Python

from typing import List, Any
from api.v1.ppt.endpoints.layouts import get_layouts
async def list_layouts() -> List[Any]:
"""
Retrieve and return a list of all available presentation layouts.
"""
return await get_layouts()