mirror of
https://github.com/taigrr/elevenlabs.git
synced 2026-04-02 11:19:01 -07:00
10 lines
121 B
Go
10 lines
121 B
Go
package client
|
|
|
|
type Client struct {
|
|
apiKey string
|
|
}
|
|
|
|
func New(apiKey string) Client {
|
|
return Client{apiKey: apiKey}
|
|
}
|