e6875f0b4b
- 13-service async plugin framework - Textual TUI with CLI fallback - Plugin hot-reload + permission system - Web management panel (aiohttp) - Bridge-based inter-module communication - 10 regression tests Fixes applied: - PBKDF2-SHA256 auth (was plain SHA256) - Auth bypass removed (was allow-all on fail) - Bare excepts replaced with logged errors - CatFramework/DreamSu -> SenSu naming unified - ServiceManager: health checks + startup_order - Env var credentials (SENSU_ADMIN_PASSWORD etc)
17 lines
320 B
Python
17 lines
320 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
桥接模块 - 提供模块间和插件间的通信功能
|
|
"""
|
|
|
|
from .core_bridge import CoreBridge, MessageType
|
|
from .plugin_bridge import PluginBridge, PluginMessageType
|
|
|
|
__all__ = [
|
|
'CoreBridge',
|
|
'MessageType',
|
|
'PluginBridge',
|
|
'PluginMessageType'
|
|
]
|