feat: 初始化多机器人服务端项目框架
基于Go语言构建多机器人服务端框架,包含配置管理、事件总线、依赖注入等核心模块 添加项目基础结构、README、gitignore和初始代码实现
This commit is contained in:
19
configs/config.toml
Normal file
19
configs/config.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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 = "onebot12"
|
||||
version = "1.0"
|
||||
|
||||
[protocol.options]
|
||||
# OneBot12 specific options can be added here
|
||||
Reference in New Issue
Block a user