1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// Tests for runtime support of standard functions.
syntax = "proto3";
package google.api.expr.test.v1;
// Note, run regen_go_proto.sh after making modifications to this file.
option go_package = "github.com/google/cel-spec/test/v1/testpb";
import "google/api/expr/v1alpha1/checked.proto";
// The format of a standard environment, i.e. a collection of declarations
// for the checker.
message Env {
// Required. The name of the environment.
string name = 1;
// The declarations in this environment.
repeated google.api.expr.v1alpha1.Decl decl = 2;
}
|