mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 13:59:39 +08:00
* ✨ 添加查弹幕 * 🎨 添加注释 * 🎨 优化代码 * 🎨 修lint Co-authored-by: 源文雨 <41315874+fumiama@users.noreply.github.com>
15 lines
242 B
Go
15 lines
242 B
Go
// package main 主函数
|
|
package main
|
|
|
|
import (
|
|
zero "github.com/wdvxdr1123/ZeroBot"
|
|
"github.com/wdvxdr1123/ZeroBot/driver"
|
|
)
|
|
|
|
type zbpcfg struct {
|
|
Z zero.Config `json:"zero"`
|
|
W []*driver.WSClient `json:"ws"`
|
|
}
|
|
|
|
var config zbpcfg
|