containerd/api/shim/shim.proto
Davanum Srinivas 4f8a784b41 Indent proto files with tabs only
fix "make fmt" failure by switching from spaces to tabs

Signed-Off-By: Davanum Srinivas <davanum@gmail.com>
2016-12-16 17:20:41 -05:00

19 lines
469 B
Protocol Buffer

syntax = "proto3";
package containerd.v1;
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);
}
message PtyRequest {
string id = 1 [(gogoproto.customname) = "ID"];
uint32 width = 2;
uint32 height = 3;
}