mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-19 01:41:55 +08:00
10 lines
282 B
Go
10 lines
282 B
Go
package config
|
|
|
|
type Config struct {
|
|
AccessKey string `json:"accessKey,string"`
|
|
SecretKey string `json:"secretKey,string"`
|
|
PoolId string `json:"poolId,string"`
|
|
ReadTimeOut int `json:"readTimeOut,int"`
|
|
ConnectTimeout int `json:"connectTimeout,int"`
|
|
}
|