mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 11:56:02 +02:00
13 lines
285 B
Protocol Buffer
13 lines
285 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pomerium.events;
|
|
option go_package = "github.com/pomerium/pomerium/pkg/grpc/events";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
// LastError is a last error
|
|
message LastError {
|
|
google.protobuf.Timestamp time = 1;
|
|
string message = 2;
|
|
string id = 3;
|
|
}
|