mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-12-10 17:45:28 +01:00
7 lines
195 B
Protocol Buffer
7 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; }
|