You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/vendor/github.com/ucloud/ucloud-sdk-go/services/uaccount/client.go

23 lines
555 B

// Code is generated by ucloud-model, DO NOT EDIT IT.
package uaccount
import (
"github.com/ucloud/ucloud-sdk-go/ucloud"
"github.com/ucloud/ucloud-sdk-go/ucloud/auth"
)
// UAccountClient is the client of UAccount
type UAccountClient struct {
*ucloud.Client
}
// NewClient will return a instance of UAccountClient
func NewClient(config *ucloud.Config, credential *auth.Credential) *UAccountClient {
meta := ucloud.ClientMeta{Product: "UAccount"}
client := ucloud.NewClientWithMeta(config, credential, meta)
return &UAccountClient{
client,
}
}