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.
go-library/service/pinduoduo/get.go

24 lines
410 B

package pinduoduo
import "github.com/dtapps/go-library/utils/golog"
func (c *Client) GetClientId() string {
return c.config.clientId
}
func (c *Client) GetClientSecret() string {
return c.config.clientSecret
}
func (c *Client) GetMediaId() string {
return c.config.mediaId
}
func (c *Client) GetPid() string {
return c.config.pid
}
func (c *Client) GetLog() *golog.ApiClient {
return c.log.client
}