mirror of
https://github.com/awfufu/qbot.git
synced 2026-03-01 05:19:44 +08:00
10 lines
190 B
Go
10 lines
190 B
Go
package api
|
|
|
|
func DeleteGroupEssence(c Client, msgID uint64) error {
|
|
params := map[string]any{
|
|
"message_id": msgID,
|
|
}
|
|
_, err := c.SendParams("delete_essence_msg", params)
|
|
return err
|
|
}
|