Files
open-im-server-deploy/pkg/common/storage/cache/cachekey/client_config.go
kim.dev.6789 c4b4bf9297
Some checks failed
itom-platform auto build image / build (push) Failing after 0s
fix conflict
2026-01-15 09:48:14 +08:00

11 lines
186 B
Go

package cachekey
const ClientConfig = "CLIENT_CONFIG"
func GetClientConfigKey(userID string) string {
if userID == "" {
return ClientConfig
}
return ClientConfig + ":" + userID
}