working commit

This commit is contained in:
2026-04-23 14:53:39 +02:00
parent fa1c3ce9e2
commit cf45872d91
12 changed files with 1786 additions and 26 deletions
+21
View File
@@ -0,0 +1,21 @@
syntax = "proto3";
package control;
option optimize_for = LITE_RUNTIME;
option cc_generic_services = false;
message Header {
Meta meta = 1;
}
message Meta {
string rpcname = 1;
}
message Hello {
Meta meta = 1;
int32 id = 2;
string name = 3;
}