Add initial backend.proto

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2020-04-06 10:52:35 -04:00
parent a4b0259456
commit b1c9da0d17
1 changed files with 17 additions and 0 deletions

17
backend/v1/backend.proto Normal file
View File

@ -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"];
}