feat: added Ping/Pong rpc #2

Merged
fenpaws merged 2 commits from ping-pong-#1 into main 2024-03-05 20:01:06 +00:00
Showing only changes of commit 762aae7309 - Show all commits

View File

@ -1,4 +1,5 @@
syntax = "proto3"; syntax = "proto3";
import "google/protobuf/timestamp.proto";
option go_package = "git.dragse.it/anthrove/plug-[REPLACE_ME]/api/gRPC"; option go_package = "git.dragse.it/anthrove/plug-[REPLACE_ME]/api/gRPC";
@ -11,10 +12,12 @@ service PlugConnector {
message PingRequest { message PingRequest {
fenpaws marked this conversation as resolved

When you really want to implement a real ping pong please send also time entries so you can check how long it takes to receive the message

When you really want to implement a real ping pong please send also time entries so you can check how long it takes to receive the message
string message = 1; // Optional message field, can be removed if not needed string message = 1; // Optional message field, can be removed if not needed
google.protobuf.Timestamp timestamp = 2;
} }
message PongResponse { message PongResponse {
string message = 1; // Optional message field, can be removed if not needed string message = 1; // Optional message field, can be removed if not needed
google.protobuf.Timestamp timestamp = 2;
} }
message PlugTaskStatus { message PlugTaskStatus {