Files
mcp-tingquan/src/mcp_feedback_enhanced/web/__init__.py
huangzhenpc 669705dc9a first commit
2025-06-07 15:35:13 +08:00

18 lines
457 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Web UI 模組
===========
提供基於 FastAPI 的 Web 用戶介面,專為 SSH 遠端開發環境設計。
支援文字輸入、圖片上傳、命令執行等功能,並參考 GUI 的設計模式。
"""
from .main import WebUIManager, launch_web_feedback_ui, get_web_ui_manager, stop_web_ui
__all__ = [
'WebUIManager',
'launch_web_feedback_ui',
'get_web_ui_manager',
'stop_web_ui'
]