compose/backend/v1/backend.proto

17 lines
399 B
Protocol Buffer

syntax = "proto3";
package com.docker.api.backend.v1;
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;
}