smegmesh/pkg/grpc/ctrlserver/ctrlserver.proto

16 lines
252 B
Protocol Buffer
Raw Normal View History

2023-09-21 12:13:36 +02:00
syntax = "proto3";
package rpctypes;
2023-10-04 18:17:53 +02:00
option go_package = "pkg/rpc";
2023-09-21 12:13:36 +02:00
service MeshCtrlServer {
rpc GetMesh(GetMeshRequest) returns (GetMeshReply) {}
2023-09-21 12:13:36 +02:00
}
message GetMeshRequest {
string meshId = 1;
2023-09-21 12:13:36 +02:00
}
message GetMeshReply {
bytes mesh = 1;
2023-09-21 12:13:36 +02:00
}