mirror of https://github.com/docker/compose.git
Add initial backend.proto
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
a4b0259456
commit
b1c9da0d17
|
@ -0,0 +1,17 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package com.docker.api.backend.v1;
|
||||
|
||||
import weak "gogoproto/gogo.proto";
|
||||
import "google/protobuf/empty.proto";
|
||||
|
||||
option go_package = "github.com/docker/api/backend/v1;v1";
|
||||
|
||||
service Backend {
|
||||
// BackendInformation returns implementation specific information on the backend.
|
||||
rpc BackendInformation(google.protobuf.Empty) returns (BackendInformationResponse);
|
||||
}
|
||||
|
||||
message BackendInformationResponse {
|
||||
string id = 1 [(gogoproto.customname) = "ID"];
|
||||
}
|
Loading…
Reference in New Issue