mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-10-27 05:52:29 +08:00
12 lines
292 B
Go
12 lines
292 B
Go
package cache
|
|
|
|
import (
|
|
"context"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/storage/model"
|
|
)
|
|
|
|
type ApplicationCache interface {
|
|
LatestVersion(ctx context.Context, platform string, hot bool) (*model.Application, error)
|
|
DeleteCache(ctx context.Context, platforms []string) error
|
|
}
|