Browse Source

固定时区与ck兼容问题处理

路佳明 4 days ago
parent
commit
07b86ddc20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.go

+ 1 - 1
main.go

@@ -13,7 +13,7 @@ func init() {
 	// 	fmt.Println("Failed to load location:", err)
 	// 	return
 	// }
-	location := time.FixedZone("CST", 8*3600)
+	location := time.FixedZone("PRC", 8*3600)
 	time.Local = location
 }