Indent proto files with tabs only
fix "make fmt" failure by switching from spaces to tabs Signed-Off-By: Davanum Srinivas <davanum@gmail.com>
This commit is contained in:
parent
3cdf1d8e41
commit
4f8a784b41
1 changed files with 7 additions and 7 deletions
|
@ -6,14 +6,14 @@ import "google/protobuf/empty.proto";
|
||||||
import "gogoproto/gogo.proto";
|
import "gogoproto/gogo.proto";
|
||||||
|
|
||||||
service ShimService {
|
service ShimService {
|
||||||
rpc Create(CreateRequest) returns (google.protobuf.Empty);
|
rpc Create(CreateRequest) returns (google.protobuf.Empty);
|
||||||
rpc Exec(ExecRequest) returns (google.protobuf.Empty);
|
rpc Exec(ExecRequest) returns (google.protobuf.Empty);
|
||||||
rpc State(StateRequest) returns (StateResponse);
|
rpc State(StateRequest) returns (StateResponse);
|
||||||
rpc Pty(PtyRequest) returns (google.protobuf.Empty);
|
rpc Pty(PtyRequest) returns (google.protobuf.Empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
message PtyRequest {
|
message PtyRequest {
|
||||||
string id = 1 [(gogoproto.customname) = "ID"];
|
string id = 1 [(gogoproto.customname) = "ID"];
|
||||||
uint32 width = 2;
|
uint32 width = 2;
|
||||||
uint32 height = 3;
|
uint32 height = 3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue