Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2024-12-11 02:00:29 +03:00
parent e7e1ff15f4
commit 1aa324c17f
63 changed files with 2488 additions and 1165 deletions

23
proto/test.proto Normal file
View File

@@ -0,0 +1,23 @@
syntax = "proto3";
package proto;
option go_package="/proto;pb";
message Item1 {
string key1 = 1;
}
message Message1 {
repeated Item1 items = 1;
}
message Item2 {
string key1 = 1;
string key2 = 2;
}
message Message2 {
repeated Item2 items = 1;
}