新增IRC协议相关的全套工具模块,包括: - 核心协议解析与CTCP处理 - 消息发送缓存与文本 sanitize - 账号配置管理与运行时状态 - 命令处理与权限控制 - 服务发现与诊断工具 - 多账号网关与配置加载
7 lines
148 B
Python
7 lines
148 B
Python
from __future__ import annotations
|
|
|
|
from .accounts import has_configured_state, is_configured
|
|
|
|
|
|
__all__ = ["has_configured_state", "is_configured"]
|