ForcePilot/backend/package/yuxi/channels/adapters/irc/configured_state.py
Kris 2dd1a075f2 feat(irc): 实现完整的IRC适配器基础功能模块
新增IRC协议相关的全套工具模块,包括:
- 核心协议解析与CTCP处理
- 消息发送缓存与文本 sanitize
- 账号配置管理与运行时状态
- 命令处理与权限控制
- 服务发现与诊断工具
- 多账号网关与配置加载
2026-05-12 00:45:10 +08:00

7 lines
148 B
Python

from __future__ import annotations
from .accounts import has_configured_state, is_configured
__all__ = ["has_configured_state", "is_configured"]