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