Files
AskaEth e6875f0b4b Initial commit: SenSu Alpha 0.2.0
- 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)
2026-06-10 12:28:05 +08:00

21 lines
421 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
框架功能集 - 提供各种工具函数和工具类
"""
from .file_utils import FileUtils
from .config_utils import ConfigUtils
from .validation_utils import ValidationUtils
from .network_utils import NetworkUtils
from .plugin_utils import PluginUtils
__all__ = [
'FileUtils',
'ConfigUtils',
'ValidationUtils',
'NetworkUtils',
'PluginUtils'
]