Files
EdgeAPI/internal/const/const.go

26 lines
526 B
Go
Raw Normal View History

2020-07-22 22:17:53 +08:00
package teaconst
const (
2021-04-18 21:25:05 +08:00
Version = "0.0.14"
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
// 其他节点版本号,用来检测是否有需要升级的节点
NodeVersion = "0.0.14"
UserNodeVersion = "0.0.7"
AuthorityNodeVersion = "0.0.1"
MonitorNodeVersion = "0.0.1"
2020-07-22 22:17:53 +08:00
)