All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 1m58s
14 lines
314 B
Protocol Buffer
14 lines
314 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "git.coopgo.io/coopgo-platform/groups-management/grpcapi";
|
|
|
|
import "google/protobuf/struct.proto";
|
|
|
|
message Group {
|
|
string id = 1;
|
|
string namespace = 2;
|
|
repeated string members = 3;
|
|
google.protobuf.Struct data = 4;
|
|
google.protobuf.Struct metadata = 5;
|
|
}
|