// test proto syntax = "proto3"; package stream; option go_package="github.com/tal-tech/go-zero"; message StreamReq { string name = 1; } message StreamResp { string greet = 1; } service StreamGreeter { rpc greet(StreamReq) returns (StreamResp); }