mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 11:56:02 +02:00
11 lines
286 B
Protocol Buffer
11 lines
286 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pomerium.audit;
|
|
option go_package = "github.com/pomerium/pomerium/pkg/grpc/audit";
|
|
|
|
import "envoy/service/auth/v3/external_auth.proto";
|
|
|
|
message Record {
|
|
envoy.service.auth.v3.CheckRequest request = 1;
|
|
envoy.service.auth.v3.CheckResponse response = 2;
|
|
}
|