22 lines
472 B
Go
22 lines
472 B
Go
|
// Code is generated by ucloud-model, DO NOT EDIT IT.
|
||
|
|
||
|
package ufile
|
||
|
|
||
|
import (
|
||
|
"github.com/ucloud/ucloud-sdk-go/ucloud"
|
||
|
"github.com/ucloud/ucloud-sdk-go/ucloud/auth"
|
||
|
)
|
||
|
|
||
|
// UFileClient is the client of UFile
|
||
|
type UFileClient struct {
|
||
|
*ucloud.Client
|
||
|
}
|
||
|
|
||
|
// NewClient will return a instance of UFileClient
|
||
|
func NewClient(config *ucloud.Config, credential *auth.Credential) *UFileClient {
|
||
|
client := ucloud.NewClient(config, credential)
|
||
|
return &UFileClient{
|
||
|
client,
|
||
|
}
|
||
|
}
|