msg to message in helloworld

This commit is contained in:
Asim Aslam
2021-05-19 15:35:34 +01:00
parent 2556d7e30f
commit ae087c987e
4 changed files with 17 additions and 16 deletions

View File

@@ -12,6 +12,6 @@ type Helloworld struct{}
// Call is a single request handler called via client.Call or the generated client code
func (e *Helloworld) Call(ctx context.Context, req *helloworld.Request, rsp *helloworld.Response) error {
logger.Info("Received Helloworld.Call request")
rsp.Msg = "Hello " + req.Name
rsp.Message = "Hello " + req.Name
return nil
}