mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
9 lines
210 B
Go
9 lines
210 B
Go
package cache
|
|
|
|
import "context"
|
|
|
|
type ClientConfigCache interface {
|
|
DeleteUserCache(ctx context.Context, userIDs []string) error
|
|
GetUserConfig(ctx context.Context, userID string) (map[string]string, error)
|
|
}
|