mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2025-03-02 23:51:16 +01:00
16 lines
252 B
Protocol Buffer
16 lines
252 B
Protocol Buffer
syntax = "proto3";
|
|
package rpctypes;
|
|
|
|
option go_package = "pkg/rpc";
|
|
|
|
service MeshCtrlServer {
|
|
rpc GetMesh(GetMeshRequest) returns (GetMeshReply) {}
|
|
}
|
|
|
|
message GetMeshRequest {
|
|
string meshId = 1;
|
|
}
|
|
|
|
message GetMeshReply {
|
|
bytes mesh = 1;
|
|
} |