Merge pull request #393 from dims/fix-make-fmt-failure
Indent proto files with tabs only
This commit is contained in:
commit
437c971e8c
1 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue