github.com/micro/go-micro/examples@v0.0.0-20210105173217-bf4ab679e18b/function/proto/greeter.proto (about) 1 syntax = "proto3"; 2 3 service Greeter { 4 rpc Hello(HelloRequest) returns (HelloResponse) {} 5 } 6 7 message HelloRequest { 8 string name = 1; 9 } 10 11 message HelloResponse { 12 string greeting = 2; 13 }