laravel-template/resources/proto/pinger.proto

18 lines
323 B
Protocol Buffer
Raw Normal View History

2023-11-01 04:02:17 +00:00
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;
}