From b1c9da0d175e25067719395277c368808c349863 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Mon, 6 Apr 2020 10:52:35 -0400 Subject: [PATCH] Add initial backend.proto Signed-off-by: Michael Crosby --- backend/v1/backend.proto | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 backend/v1/backend.proto diff --git a/backend/v1/backend.proto b/backend/v1/backend.proto new file mode 100644 index 00000000..bcdf4d25 --- /dev/null +++ b/backend/v1/backend.proto @@ -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"]; +}