增加椛椛词库

This commit is contained in:
Yiwen-Chan
2021-04-20 15:39:49 +08:00
parent 710e3e4c01
commit 3268a056bc
4 changed files with 266 additions and 53 deletions

28
main.go
View File

@@ -9,14 +9,22 @@ import (
"github.com/wdvxdr1123/ZeroBot/driver"
"github.com/wdvxdr1123/ZeroBot/message"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/atri"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/chat"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/github"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/manager"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/music"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/runcode"
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/shindan"
//_ "github.com/Yiwen-Chan/ZeroBot-Plugin/setutime"
// 注:以下插件均可通过前面加 // 注释,注释后停用并不加载插件
// 下列插件可与 wdvxdr1123/ZeroBot v1.1.2 以上配合单独使用
// 词库类
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/atri" // ATRI词库
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/chat" // 基础词库
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/huahua" // 椛椛词库
// 实用类
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/github" // 搜索GitHub仓库
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/manager" // 群管
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/runcode" // 在线运行代码
// 娱乐类
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/music" // 点歌
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/setutime" // 涩图
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/shindan" // 测定
)
func init() {
@@ -31,7 +39,7 @@ func main() {
fmt.Print(`
====================[ZeroBot-Plugin]====================
* OneBot + ZeroBot + Golang
* Version 1.0.1 - 2021-04-20 02:38:38.4181345 +0800 CST
* Version 1.0.1 - 2021-04-20 15:38:43.5133157 +0800 CST
* Copyright © 2021 Kanri, DawnNights, All Rights Reserved
* Project: https://github.com/Yiwen-Chan/ZeroBot-Plugin
========================================================
@@ -49,7 +57,7 @@ func main() {
Handle(func(ctx *zero.Ctx) {
ctx.SendChain(message.Text(
"* OneBot + ZeroBot + Golang ", "\n",
"* Version 1.0.1 - 2021-04-20 02:38:38.4181345 +0800 CST", "\n",
"* Version 1.0.1 - 2021-04-20 15:38:43.5133157 +0800 CST", "\n",
"* Copyright © 2021 Kanri, DawnNights, All Rights Reserved ", "\n",
"* Project: https://github.com/Yiwen-Chan/ZeroBot-Plugin",
))