github.com/lalkh/containerd@v1.4.3/api/services/version/v1/version.proto (about) 1 syntax = "proto3"; 2 3 package containerd.services.version.v1; 4 5 import "google/protobuf/empty.proto"; 6 import weak "gogoproto/gogo.proto"; 7 8 // TODO(stevvooe): Should version service actually be versioned? 9 option go_package = "github.com/containerd/containerd/api/services/version/v1;version"; 10 11 service Version { 12 rpc Version(google.protobuf.Empty) returns (VersionResponse); 13 } 14 15 message VersionResponse { 16 string version = 1; 17 string revision = 2; 18 }