mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-15 16:00:26 -04:00
Previous deps merge had been captured by an older version of godep,
updating godep and rerunning...
godep save $(go list ./... | grep -v /vendor/)
...yielded this diff.
New `godep` also produced a warning to pin to the major Go version
instead of the minor one, which we do here as well.
34 lines
503 B
Protocol Buffer
34 lines
503 B
Protocol Buffer
// Built-in base types for API calls. Primarily useful as return types.
|
|
|
|
syntax = "proto2";
|
|
option go_package = "base";
|
|
|
|
package appengine.base;
|
|
|
|
message StringProto {
|
|
required string value = 1;
|
|
}
|
|
|
|
message Integer32Proto {
|
|
required int32 value = 1;
|
|
}
|
|
|
|
message Integer64Proto {
|
|
required int64 value = 1;
|
|
}
|
|
|
|
message BoolProto {
|
|
required bool value = 1;
|
|
}
|
|
|
|
message DoubleProto {
|
|
required double value = 1;
|
|
}
|
|
|
|
message BytesProto {
|
|
required bytes value = 1 [ctype=CORD];
|
|
}
|
|
|
|
message VoidProto {
|
|
}
|