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

9 lines
210 B
Go
Raw Normal View History

2024-07-16 10:46:21 +08:00
package cache
import "context"
type OnlineCache interface {
GetOnline(ctx context.Context, userID string) ([]int32, error)
SetUserOnline(ctx context.Context, userID string, online, offline []int32) error
}