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

16 lines
244 B

2 years ago
package meituan
2 years ago
import "go.dtapp.net/golog"
2 years ago
func (c *Client) GetAppKey() string {
2 years ago
return c.config.appKey
}
func (c *Client) GetSecret() string {
return c.config.secret
2 years ago
}
2 years ago
2 years ago
func (c *Client) GetLog() *golog.ApiClient {
2 years ago
return c.log.client
2 years ago
}