Closed RoughIndustries closed 5 years ago
I think I understand how it would work but I wanted to know if I am right? product := Product{} _, err := client.Get("products/:id", &product) if err != nil { log.Fatal(err) } Is this correct?
The above is correct. Thanks for your sdk.
I think I understand how it would work but I wanted to know if I am right? product := Product{} _, err := client.Get("products/:id", &product) if err != nil { log.Fatal(err) } Is this correct?