add code grpc to manage new collection db groupMember

This commit is contained in:
soukainna
2022-12-19 09:14:31 +01:00
parent daf39bc067
commit 57540f2587
4 changed files with 325 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option go_package = "git.coopgo.io/coopgo-platform/groups-management/grpcapi";
import "google/protobuf/struct.proto";
message GroupMember {
string memberid = 1;
string groupid = 2;
google.protobuf.Struct data = 3;
}