proto/proto/shared/common.proto

15 lines
174 B
Protocol Buffer

syntax = "proto3";
package common_proto;
message Empty {
}
message Pubkey {
string pubkey = 1;
}
message MappedPort {
uint32 host_port = 1;
uint32 guest_port = 2;
}