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

18 lines
290 B

package pinduoduo
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
}