Initial commit

This commit is contained in:
2022-08-11 17:21:32 +02:00
commit f6aa45944d
19 changed files with 2605 additions and 0 deletions

12
grpcapi/groups.proto Normal file
View File

@@ -0,0 +1,12 @@
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;
}