Slide 110
Slide 110 text
type EchoRequest struct {
Msg string `protobuf:"bytes,1,opt,name=msg"
json:"msg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
type EchoServiceServer interface {
Echo(context.Context, *EchoRequest) (*EchoResponse, error)
}
echo.pb.go