import template code

This commit is contained in:
2026-03-24 10:31:30 +02:00
commit b443292720
974 changed files with 487563 additions and 0 deletions

15
proto/mlbctl.proto Normal file
View File

@@ -0,0 +1,15 @@
syntax = "proto3";
option go_package = ".;mlbctl";
package mlbctl;
service Control {
rpc getHello(getHelloParams) returns (getHelloResult) {};
}
message getHelloParams {}
message getHelloResult {
string message = 1;
}