mirror of
https://github.com/Minidoracat/mcp-feedback-enhanced.git
synced 2025-07-27 10:42:25 +08:00
22 lines
407 B
Python
22 lines
407 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
分頁組件
|
|
========
|
|
|
|
包含各種專用分頁組件的實現。
|
|
"""
|
|
|
|
from .feedback_tab import FeedbackTab
|
|
from .summary_tab import SummaryTab
|
|
from .command_tab import CommandTab
|
|
from .settings_tab import SettingsTab
|
|
from .about_tab import AboutTab
|
|
|
|
__all__ = [
|
|
'FeedbackTab',
|
|
'SummaryTab',
|
|
'CommandTab',
|
|
'SettingsTab',
|
|
'AboutTab'
|
|
] |