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.
15 lines
581 B
15 lines
581 B
8 months ago
|
package config
|
||
|
|
||
|
type TencentEss struct {
|
||
|
SecretId string `ini:"secretId"`
|
||
|
SecretKey string `ini:"secretKey"`
|
||
|
Appid string `ini:"appid"`
|
||
|
OrganizationName string `ini:"organizationName"`
|
||
|
ProxyAppId string `ini:"proxyAppId"`
|
||
|
ProxyOrganizationOpenId string `ini:"proxyOrganizationOpenId"`
|
||
|
ProxyOperatorOpenId string `ini:"proxyOperatorOpenId"`
|
||
|
EndPoint string `ini:"endPoint"`
|
||
|
FileServiceEndPoint string `ini:"fileServiceEndPoint"`
|
||
|
CallbackUrl string `ini:"callbackUrl"`
|
||
|
}
|