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