This commit is contained in:
wangchuxiao 2023-01-28 13:20:00 +08:00
parent d9becad8e9
commit 7e4bc249be

View File

@ -42,7 +42,6 @@ type groupServer struct {
etcdSchema string
etcdAddr []string
imdb.GroupInterface
}
func NewGroupServer(port int) *groupServer {
@ -176,7 +175,6 @@ func (s *groupServer) CreateGroup(ctx context.Context, req *pbGroup.CreateGroupR
return nil, err
}
}
if err := controller.
if err := (*imdb.GroupMember)(nil).Create(ctx, groupMembers); err != nil {
return nil, err
}