File: envcheck.proto

package info (click to toggle)
golang-github-google-cel-spec 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 876 kB
  • sloc: sh: 11; makefile: 8
file content (20 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
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;
}