18 lines
323 B
Protocol Buffer
18 lines
323 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option php_namespace = "App\\Services\\gRPC\\Pinger";
|
||
|
option php_metadata_namespace = "App\\Services\\gRPC\\GPBMetadata";
|
||
|
|
||
|
package pinger;
|
||
|
|
||
|
service Pinger {
|
||
|
rpc ping (PingRequest) returns (PingResponse) {}
|
||
|
}
|
||
|
|
||
|
message PingRequest {
|
||
|
string url = 1;
|
||
|
}
|
||
|
|
||
|
message PingResponse {
|
||
|
int32 status_code = 1;
|
||
|
}
|