Update README.md

This commit is contained in:
Asim Aslam
2021-04-21 16:06:25 +01:00
committed by GitHub
parent 6d6edbe311
commit 384cfd9411

View File

@@ -33,12 +33,14 @@ func main() {
req := &Request{
Name: "John",
}
var rsp Response
if err := c.Call("helloworld", "call", req, &rsp); err != nil {
fmt.Println(err)
return
}
fmt.Println(rsp)
}
```