Files
EdgeAPI/internal/const/const.go

31 lines
635 B
Go
Raw Normal View History

2020-07-22 22:17:53 +08:00
package teaconst
const (
2022-04-25 11:11:43 +08:00
Version = "0.4.8"
2020-07-22 22:17:53 +08:00
ProductName = "Edge API"
ProcessName = "edge-api"
ProductNameZH = "Edge"
Role = "api"
EncryptKey = "8f983f4d69b83aaa0d74b21a212f6967"
EncryptMethod = "aes-256-cfb"
ErrServer = "服务器出了点小问题,请稍后重试"
2021-01-12 11:49:14 +08:00
SystemdServiceName = "edge-api"
2021-05-11 22:48:04 +08:00
// 其他节点版本号,用来检测是否有需要升级的节点
2022-04-25 11:11:43 +08:00
NodeVersion = "0.4.8"
2022-03-26 22:04:10 +08:00
UserNodeVersion = "0.3.3"
2021-06-14 20:39:10 +08:00
AuthorityNodeVersion = "0.0.2"
2021-08-24 15:46:53 +08:00
MonitorNodeVersion = "0.0.3"
2022-04-10 16:02:21 +08:00
DNSNodeVersion = "0.2.2"
2021-09-08 17:31:18 +08:00
ReportNodeVersion = "0.1.0"
2022-03-14 16:06:25 +08:00
// SQLVersion SQL版本号
2022-04-22 17:16:19 +08:00
SQLVersion = "8"
2020-07-22 22:17:53 +08:00
)