mirror of
https://github.com/Minidoracat/mcp-feedback-enhanced.git
synced 2025-07-26 18:12:25 +08:00
13 lines
177 B
Python
13 lines
177 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Web UI 路由模組
|
|
==============
|
|
|
|
提供 Web UI 的路由設置和處理。
|
|
"""
|
|
|
|
from .main_routes import setup_routes
|
|
|
|
|
|
__all__ = ["setup_routes"]
|