// Copyright (c) 2018 IoTeX
// This is an alpha (internal) release and is not suitable for production. This source code is provided 'as is' and no
// warranties are given as to title or non-infringement, merchantability or fitness for purpose and, to the extent
// permitted by law, all liability for your use of the code is disclaimed. This source code is governed by Apache
// License 2.0 that can be found in the LICENSE file.

// To compile the proto, run:
//      protoc --go_out=plugins=grpc:$GOPATH/src *.proto
syntax = "proto3";
package testingpb;
option go_package = "github.com/iotexproject/iotex-proto/golang/testingpb";
option java_multiple_files = true;
option java_package = "com.github.iotexproject.grpc.testing";

message TestPayload {
  bytes msg_body = 1;
}
