Files
open-im-server/pkg/common/storage/cache/client_config.go
T

9 lines
210 B
Go
Raw Normal View History

package cache
import "context"
type ClientConfigCache interface {
DeleteUserCache(ctx context.Context, userIDs []string) error
GetUserConfig(ctx context.Context, userID string) (map[string]string, error)
}