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

View File

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