laravel-template/resources/proto/pinger.proto
2023-11-01 12:02:17 +08:00

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;
}