|
@@ -115,8 +115,10 @@ var (
|
|
|
AccessKeySecret string
|
|
|
)
|
|
|
|
|
|
-// 彭博更新频度
|
|
|
-var PbRefreshFrequency string
|
|
|
+var (
|
|
|
+ PbRefreshFrequency string // 彭博更新频度
|
|
|
+ PbRefreshOpen string // 彭博刷新开关
|
|
|
+)
|
|
|
var HzDataApi string
|
|
|
|
|
|
func init() {
|
|
@@ -247,4 +249,6 @@ func init() {
|
|
|
|
|
|
// 彭博刷新频度
|
|
|
PbRefreshFrequency = config["pb_refresh_frequency"]
|
|
|
+ // 彭博刷新开关
|
|
|
+ PbRefreshOpen = config["pb_refresh_open"]
|
|
|
}
|