Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fumiama/zerobot-hook
为 ZeroBot-Plugin 生成动态库插件
https://github.com/fumiama/zerobot-hook
go go-cqhttp golang golang-examples plugin plugins qqbot zerobot
Last synced: 3 months ago
JSON representation
为 ZeroBot-Plugin 生成动态库插件
- Host: GitHub
- URL: https://github.com/fumiama/zerobot-hook
- Owner: fumiama
- License: gpl-3.0
- Archived: true
- Created: 2021-10-13T04:16:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T15:14:28.000Z (almost 3 years ago)
- Last Synced: 2024-09-30T17:08:10.858Z (3 months ago)
- Topics: go, go-cqhttp, golang, golang-examples, plugin, plugins, qqbot, zerobot
- Language: Go
- Homepage:
- Size: 90.8 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> **注意**:本仓库将不再维护,后续更新请移步[Plugin-Template](https://github.com/FloatTech/Plugin-Template)
# ~~ZeroBot-Hook~~
为 ZeroBot-Plugin 生成动态库插件。# 使用方法
### 编写插件
复制`main.go`到本地或使用[模版](https://github.com/FloatTech/Plugin-Template),修改`main.go`的`Inita`函数为插件内容,语法与[ZeroBot](https://github.com/wdvxdr1123/ZeroBot)基本相同。
### 编译为动态库
#### 使用Actions编译
1. fork 本仓库
2. 上传修改后的`main.go`及其它新增文件。
3. 创建形如`v1.2.3`的`tag`,触发插件编译流程。
4. 编译好后前往`Release`页面下载即可。
#### 本地编译
```bash
# 本机架构
go build -ldflags "-s -w" -buildmode=plugin -o demo.so
# 交叉编译:详见 workflow 相关代码
CGO_ENABLED=1 GOOS=linux GOARCH=arm GOARM=6 CC=arm-linux-gnueabihf-gcc-9 CXX=g++-9-arm-linux-gnueabihf go build -ldflags="-s -w" -buildmode=plugin -o artifacts/zbpd-linux-armv6
```
### 开始使用
放置动态库到[ZeroBot-Plugin-Dynamic](https://github.com/FloatTech/ZeroBot-Plugin-Dynamic)的`plugins/`目录下,给机器人发送`/刷新插件`即可,或重启也可加载。