mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2024-12-13 01:50:53 +01:00
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;
|
|
} |