19 lines
440 B
Protocol Buffer
19 lines
440 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package containerd.services.version.v1;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
// TODO(stevvooe): Should version service actually be versioned?
|
|
option go_package = "github.com/containerd/containerd/api/services/version/v1;version";
|
|
|
|
service Version {
|
|
rpc Version(google.protobuf.Empty) returns (VersionResponse);
|
|
}
|
|
|
|
message VersionResponse {
|
|
string version = 1;
|
|
string revision = 2;
|
|
}
|