While gogo isn't actually used, it is still referenced from .proto files and its corresponding Go package is imported from the auto-generated files. Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			420 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			420 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
// To regenerate api.pb.go run `make protos`
 | 
						|
syntax = "proto3";
 | 
						|
 | 
						|
package runtimeoptions.v1;
 | 
						|
 | 
						|
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;
 | 
						|
}
 |