mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
This is a second attempt to add protobuf to Nestri, after the first one failed --------- Co-authored-by: Philipp Neumann <3daquawolf@gmail.com> Co-authored-by: DatCaptainHorse <DatCaptainHorse@users.noreply.github.com>
17 lines
324 B
Protocol Buffer
17 lines
324 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
option go_package = "relay/internal/proto";
|
|
|
|
package proto;
|
|
|
|
message ProtoTimestampEntry {
|
|
string stage = 1;
|
|
google.protobuf.Timestamp time = 2;
|
|
};
|
|
|
|
message ProtoLatencyTracker {
|
|
string sequence_id = 1;
|
|
repeated ProtoTimestampEntry timestamps = 2;
|
|
} |