mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-09-04 01:03:21 +00:00
8 lines
195 B
Protocol Buffer
8 lines
195 B
Protocol Buffer
syntax = "proto3";
|
|
package echo;
|
|
service EchoService {
|
|
rpc Echo (EchoRequest) returns (EchoResponse);
|
|
}
|
|
message EchoRequest { string message = 1; }
|
|
message EchoResponse { string message = 1; }
|