mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-10-27 05:52:29 +08:00
10 lines
195 B
Go
10 lines
195 B
Go
package cachekey
|
|
|
|
const (
|
|
ApplicationLatestVersion = "APPLICATION_LATEST_VERSION:"
|
|
)
|
|
|
|
func GetApplicationLatestVersionKey(platform string) string {
|
|
return ApplicationLatestVersion + platform
|
|
}
|