mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-11 23:47:32 +08:00
12 lines
286 B
Go
12 lines
286 B
Go
package group
|
|
|
|
import (
|
|
"context"
|
|
|
|
relationtb "github.com/openimsdk/open-im-server/v3/pkg/common/storage/model"
|
|
)
|
|
|
|
func (g *groupServer) PopulateGroupMember(ctx context.Context, members ...*relationtb.GroupMember) error {
|
|
return g.notification.PopulateGroupMember(ctx, members...)
|
|
}
|