github.com/annwntech/go-micro/v2@v2.9.5/service/grpc/proto/test.proto (about)

     1  syntax = "proto3";
     2  
     3  service Test {
     4  	rpc Call(Request) returns (Response) {}
     5  }
     6  
     7  message Request {
     8  	string name = 1;
     9  }
    10  
    11  message Response {
    12  	string msg = 1;
    13  }