2025-06-15 11:34:34 +08:00

31 lines
660 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
"""
MCP Feedback Enhanced Desktop Application
=========================================
基於 Tauri 的桌面應用程式包裝器,為 MCP Feedback Enhanced 提供原生桌面體驗。
主要功能:
- 原生桌面應用程式界面
- 整合現有的 Web UI 功能
- 跨平台支援Windows、macOS、Linux
- 無需瀏覽器的獨立運行環境
作者: Minidoracat
版本: 2.4.3
"""
__version__ = "2.4.3"
__author__ = "Minidoracat"
__email__ = "minidora0702@gmail.com"
from .desktop_app import DesktopApp, launch_desktop_app
__all__ = [
"DesktopApp",
"__author__",
"__version__",
"launch_desktop_app",
]