mirror of
https://github.com/Minidoracat/mcp-feedback-enhanced.git
synced 2025-07-27 10:42:25 +08:00
12 lines
200 B
Python
12 lines
200 B
Python
![]() |
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
Web UI 路由模組
|
||
|
==============
|
||
|
|
||
|
提供 Web UI 的路由設置和處理。
|
||
|
"""
|
||
|
|
||
|
from .main_routes import setup_routes
|
||
|
|
||
|
__all__ = ['setup_routes']
|