Files
elevenlabs/client/client.go
2023-04-18 01:24:28 -07:00

12 lines
170 B
Go

package client
const apiEndpoint = "https://api.elevenlabs.io"
type Client struct {
apiKey string
}
func New(apiKey string) Client {
return Client{apiKey: apiKey}
}