Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-02 14:55:41 +00:00
parent ad9b51b20e
commit d8fe0a59a9
9 changed files with 7 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ type MqService struct {
client *client.Client
}
// Publish a message to the mq. Specify a topic to group messages for a specific topic.
// Publish a message. Specify a topic to group messages for a specific topic.
func (t *MqService) Publish(request *PublishRequest) (*PublishResponse, error) {
rsp := &PublishResponse{}
return rsp, t.client.Call("mq", "Publish", request, rsp)