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

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

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

View File

@ -6,4 +6,5 @@ maim_message
loguru
pillow
tomlkit
rich
rich
sqlmodel