feat: 添加群组和群成员信息获取功能

- 新增 action/group_member.go 文件,实现获取群组列表和群成员列表的方法
- 在 constants/uri.go 中定义群组相关的 API 路径常量
- 在 model/group.go 中添加群组和群成员的数据结构定义
This commit is contained in:
lixiangwuxian
2025-03-09 18:08:32 +08:00
parent 711c4fd3d6
commit db4d232464
3 changed files with 111 additions and 0 deletions

6
constants/uri.go Normal file
View File

@@ -0,0 +1,6 @@
package constants
const (
GET_GROUP_LIST = "/get_group_list"
GET_GROUP_MEMBER_LIST = "/get_group_member_list"
)