mirror of
https://github.com/taigrr/elevenlabs.git
synced 2026-04-02 03:08:57 -07:00
18 lines
442 B
Go
18 lines
442 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
func (c Client) GetUserInfoV1UserGet(ctx context.Context) (UserResponseModel, *http.Response, error) {
|
|
localVarHttpMethod = strings.ToUpper("Get")
|
|
localVarPath := a.client.cfg.BasePath + "/v1/user"
|
|
}
|
|
|
|
func (c Client) GetSubscriptionInfo(ctx context.Context) error {
|
|
localVarHttpMethod = strings.ToUpper("Get")
|
|
localVarPath := a.client.cfg.BasePath + "/v1/user/subscription"
|
|
}
|