github.com/micro/go-micro/examples@v0.0.0-20210105173217-bf4ab679e18b/service/proto/greeter.proto (about)

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