- Upgrade Go version to 1.24.0 and update toolchain. - Update various dependencies in go.mod and go.sum, including: - Upgrade `fasthttp/websocket` to v1.5.12 - Upgrade `fsnotify/fsnotify` to v1.9.0 - Upgrade `valyala/fasthttp` to v1.58.0 - Add new dependencies for `bytedance/sonic` and `google/uuid`. - Refactor bot configuration in config.toml to support multiple bot protocols, including "milky" and "onebot11". - Modify internal configuration structures to accommodate new bot settings. - Enhance event dispatcher with metrics tracking and asynchronous processing capabilities. - Implement WebSocket connection management with heartbeat and reconnection logic. - Update server handling for bot management and event publishing.
53 lines
969 B
TOML
53 lines
969 B
TOML
# CellBot Configuration
|
|
|
|
[server]
|
|
host = "0.0.0.0"
|
|
port = 8080
|
|
|
|
[log]
|
|
level = "info"
|
|
output = "logs/cellbot.log"
|
|
max_size = 100 # MB
|
|
max_backups = 3
|
|
max_age = 7 # days
|
|
|
|
[protocol]
|
|
name = "milky"
|
|
version = "1.0"
|
|
|
|
[protocol.options]
|
|
# Protocol specific options can be added here
|
|
|
|
# ============================================================================
|
|
# Bot 配置
|
|
# ============================================================================
|
|
|
|
# Milky Bot 示例
|
|
[[bots]]
|
|
id = "milky_bot_1"
|
|
protocol = "milky"
|
|
enabled = false
|
|
|
|
[bots.milky]
|
|
protocol_url = "http://localhost:3000"
|
|
access_token = "your_token_here"
|
|
event_mode = "sse"
|
|
timeout = 30
|
|
retry_count = 3
|
|
|
|
# OneBot11 Bot 示例
|
|
[[bots]]
|
|
id = "onebot11_bot_1"
|
|
protocol = "onebot11"
|
|
enabled = true
|
|
|
|
[bots.onebot11]
|
|
connection_type = "ws"
|
|
self_id = "123456789"
|
|
nickname = "TestBot"
|
|
ws_url = "ws://127.0.0.1:3001"
|
|
access_token = "hDeu66@_DDhgMf<9"
|
|
timeout = 30
|
|
heartbeat = 30
|
|
reconnect_interval = 5
|