test group file

This commit is contained in:
Gordon 2022-07-05 16:35:12 +08:00
parent f2b0f54c0b
commit 2b6f861f3b

View File

@ -119,3 +119,9 @@ func Test_GetAccountCode(t *testing.T) {
assert.Nil(t, err)
fmt.Println(code)
}
func Test_GetGroupMemberList(t *testing.T) {
groupID := "3791742301"
list, err := DB.GetGroupMemberIDListFromCache(groupID)
assert.Nil(t, err)
fmt.Println(list)
}