
This commit removes the following gogoproto extensions; - gogoproto.nullable - gogoproto.customename - gogoproto.unmarshaller_all - gogoproto.stringer_all - gogoproto.sizer_all - gogoproto.marshaler_all - gogoproto.goproto_unregonized_all - gogoproto.goproto_stringer_all - gogoproto.goproto_getters_all None of them are supported by Google's toolchain (see #6564). Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
17 lines
477 B
Protocol Buffer
17 lines
477 B
Protocol Buffer
// To regenerate api.pb.go run `make protos`
|
|
syntax = "proto3";
|
|
|
|
package runtimeoptions.v1;
|
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/containerd/containerd/pkg/runtimeoptions/v1;runtimeoptions_v1";
|
|
|
|
message Options {
|
|
// TypeUrl specifies the type of the content inside the config file.
|
|
string type_url = 1;
|
|
// ConfigPath specifies the filesystem location of the config file
|
|
// used by the runtime.
|
|
string config_path = 2;
|
|
}
|