forked from extern/smegmesh
16 lines
258 B
Protocol Buffer
16 lines
258 B
Protocol Buffer
syntax = "proto3";
|
|
package rpctypes;
|
|
|
|
option go_package = "pkg/rpc";
|
|
|
|
service MeshCtrlServer {
|
|
rpc JoinMesh(JoinMeshRequest) returns (JoinMeshReply) {}
|
|
}
|
|
|
|
message JoinMeshRequest {
|
|
string meshId = 2;
|
|
}
|
|
|
|
message JoinMeshReply {
|
|
bool success = 1;
|
|
} |