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

28 lines
487 B

2 years ago
package jd
2 years ago
import "go.dtapp.net/golog"
2 years ago
// GetAppKey 应用Key
func (c *Client) GetAppKey() string {
2 years ago
return c.config.appKey
2 years ago
}
// GetSecretKey 密钥
func (c *Client) GetSecretKey() string {
2 years ago
return c.config.secretKey
2 years ago
}
// GetSiteId 网站ID/APP ID
func (c *Client) GetSiteId() string {
2 years ago
return c.config.siteId
2 years ago
}
// GetPositionId 推广位id
func (c *Client) GetPositionId() string {
2 years ago
return c.config.positionId
2 years ago
}
2 years ago
2 years ago
func (c *Client) GetLog() *golog.ApiClient {
return c.log.client
2 years ago
}