mirror of
https://github.com/awfufu/qbot.git
synced 2026-03-01 05:19:44 +08:00
12 lines
256 B
Go
12 lines
256 B
Go
package api
|
|
|
|
func SendGroupNotice(c Client, groupID uint64, content, image string) error {
|
|
params := map[string]any{
|
|
"group_id": groupID,
|
|
"content": content,
|
|
"image": image,
|
|
}
|
|
_, err := c.SendParams("_send_group_notice", params)
|
|
return err
|
|
}
|