mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-09-10 03:22:01 +08:00
8 lines
199 B
Go
8 lines
199 B
Go
package cachekey
|
|
|
|
const streamMessageCache = "STREAM_MSG:"
|
|
|
|
func GetStreamMsgKey(conversationID string, clientMsgID string) string {
|
|
return streamMessageCache + conversationID + ":" + clientMsgID
|
|
}
|