mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-24 02:16:16 +08:00
14 lines
227 B
Go
14 lines
227 B
Go
package cache
|
|
|
|
import (
|
|
"Open_IM/pkg/common/db/relation"
|
|
"github.com/dtm-labs/rockscache"
|
|
"time"
|
|
)
|
|
|
|
type ExtendMsgSetCache struct {
|
|
friendDB *relation.FriendGorm
|
|
expireTime time.Duration
|
|
rcClient *rockscache.Client
|
|
}
|