From 4f8a784b412f1212f34db21ecd3c07b2346055ef Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Fri, 16 Dec 2016 17:18:33 -0500 Subject: [PATCH] Indent proto files with tabs only fix "make fmt" failure by switching from spaces to tabs Signed-Off-By: Davanum Srinivas --- api/shim/shim.proto | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/api/shim/shim.proto b/api/shim/shim.proto index fb34ca511..7414e203f 100644 --- a/api/shim/shim.proto +++ b/api/shim/shim.proto @@ -6,14 +6,14 @@ import "google/protobuf/empty.proto"; import "gogoproto/gogo.proto"; service ShimService { - rpc Create(CreateRequest) returns (google.protobuf.Empty); - rpc Exec(ExecRequest) returns (google.protobuf.Empty); - rpc State(StateRequest) returns (StateResponse); - rpc Pty(PtyRequest) returns (google.protobuf.Empty); + rpc Create(CreateRequest) returns (google.protobuf.Empty); + rpc Exec(ExecRequest) returns (google.protobuf.Empty); + rpc State(StateRequest) returns (StateResponse); + rpc Pty(PtyRequest) returns (google.protobuf.Empty); } message PtyRequest { - string id = 1 [(gogoproto.customname) = "ID"]; - uint32 width = 2; - uint32 height = 3; + string id = 1 [(gogoproto.customname) = "ID"]; + uint32 width = 2; + uint32 height = 3; }