mirror of
https://github.com/docker/compose.git
synced 2025-07-29 08:34:15 +02:00
Add initial backend.proto
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
a4b0259456
commit
b1c9da0d17
17
backend/v1/backend.proto
Normal file
17
backend/v1/backend.proto
Normal 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"];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user