gitee.com/liuxuezhan/go-micro-v1.18.0@v1.0.0/server/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  }