feat: added timestamp

This commit is contained in:
soxx 2024-03-05 20:59:11 +01:00
parent ba8940c3c4
commit 762aae7309

View File

@ -1,4 +1,5 @@
syntax = "proto3";
import "google/protobuf/timestamp.proto";
option go_package = "git.dragse.it/anthrove/plug-[REPLACE_ME]/api/gRPC";
@ -11,10 +12,12 @@ service PlugConnector {
message PingRequest {
string message = 1; // Optional message field, can be removed if not needed
google.protobuf.Timestamp timestamp = 2;
}
message PongResponse {
string message = 1; // Optional message field, can be removed if not needed
google.protobuf.Timestamp timestamp = 2;
}
message PlugTaskStatus {