Files
open-im-server/pkg/common/storage/cache/cachekey/application.go
T

10 lines
195 B
Go
Raw Normal View History

2024-10-25 16:50:58 +08:00
package cachekey
const (
ApplicationLatestVersion = "APPLICATION_LATEST_VERSION:"
)
func GetApplicationLatestVersionKey(platform string) string {
return ApplicationLatestVersion + platform
}