Files
elevenlabs/client/client.go
2023-04-17 19:50:53 -07:00

10 lines
121 B
Go

package client
type Client struct {
apiKey string
}
func New(apiKey string) Client {
return Client{apiKey: apiKey}
}