Go packages for RTZR STT API service.
By default, each API will use RTZR CLIENT SECRET for authorization.
To make authorize, you should export variables,
export RTZR_CLIENT_ID="YOUR_CLIENT_ID"
export RTZR_CLIENT_SECRET="YOUR_CLIENT_SECRET"This will allow your application to run without requiring configuration
client, err := speech.NewRestClient(nil)or you can manually authorize in your code,
client, err := speech.NewRestClient(&option.ClientOption{
ClientId : "YOUR_CLIENT_ID",
ClientSecret : "YOUR_CLIENT_SECRET",
})you can see examples of using RTZR STT SDK. rtzr-go-tutorial