Files
open-im-server/pkg/common/db/cache/extend_msg_set.go
T

14 lines
227 B
Go
Raw Normal View History

2023-02-07 18:43:43 +08:00
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
}