init: first commit

This commit is contained in:
2025-12-01 19:35:50 +08:00
commit b0aef76685
81 changed files with 2348 additions and 0 deletions

10
api/set_group_name.go Normal file
View File

@@ -0,0 +1,10 @@
package api
func SetGroupName(c Client, groupID uint64, groupName string) error {
params := map[string]any{
"group_id": groupID,
"group_name": groupName,
}
_, err := c.Send("set_group_name", params)
return err
}