Files
HomeOps-Hub/api/proto/homeops/hub.proto
T

13 lines
263 B
Protocol Buffer

syntax = "proto3";
import "google/protobuf/empty.proto";
option go_package = "github.com/lorsanstand/HomeOps-Hub/api/gen/homeops;homeops";
service Hub {
rpc Ping (google.protobuf.Empty) returns (PongResponse) {}
}
message PongResponse {
string pong = 1;
}