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

24 lines
388 B

package pinduoduo
import "go.dtapp.net/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
}