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