mirror of
https://github.com/containers/podman.git
synced 2025-08-17 21:33:10 +08:00

Ran a `go get -u` and bumped K8s deps to 1.15.0. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
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 {
|
|
}
|