更新文档,顺便补一个缺失依赖项

pull/41/head
A0000Xz 2025-06-28 14:37:22 +08:00
parent 5c6cdddbd3
commit bdbdc79f14
3 changed files with 15 additions and 3 deletions

View File

@ -63,7 +63,7 @@ sequenceDiagram
- [x] 读取戳一戳的自定义内容
- [ ] 语音解析(?)
- [ ] 所有的notice类
- [ ] <del>撤回</del>
- [x] 撤回(已添加相关指令)
- [x] 发送消息
- [x] 发送文本
- [x] 发送图片

View File

@ -47,3 +47,14 @@ Seg.data: Dict[str, Any] = {
}
}
```
## 撤回消息
```python
Seg.data: Dict[str, Any] = {
"name": "DELETE_MSG",
"args": {
"message_id": "消息所对应的message_id"
}
}
```
message_id怎么搞到手全凭你本事也请在自己的插件里写好确定是否能撤回对应的消息的功能毕竟这玩意真的单纯根据message_id撤消息

View File

@ -7,3 +7,4 @@ loguru
pillow
tomlkit
rich
sqlmodel