blob: dd0741b5658785e2dd97a4918a54abcce15a3958 [file] [log] [blame]
syntax = "proto3";
package authproxy.rpc;
option go_package = "go.skia.org/infra/kube/go/authproxy/protoheader";
// Authorized users may be passed to the server via protobuf serialized into a
// header. We use this proto to extract the email address of the authorized
// user.
message Header {
// email address of the logged in user.
string email = 2;
}