github.com/annwntech/go-micro/v2@v2.9.5/transport/grpc/proto/transport.proto (about) 1 syntax = "proto3"; 2 3 package go.micro.transport.grpc; 4 5 service Transport { 6 rpc Stream(stream Message) returns (stream Message) {} 7 } 8 9 message Message { 10 map<string, string> header = 1; 11 bytes body = 2; 12 }