github.com/micro/go-micro/examples@v0.0.0-20210105173217-bf4ab679e18b/secure/srv/proto/hello/hello.proto (about)

     1  syntax = "proto3";
     2  
     3  package go.micro.srv.greeter;
     4  
     5  service Say {
     6  	rpc Hello(Request) returns (Response) {}
     7  }
     8  
     9  message Request {
    10  	string name = 1;
    11  }
    12  
    13  message Response {
    14  	string msg = 1;
    15  }