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

12 lines
292 B
Go
Raw Normal View History

2024-10-25 16:50:58 +08:00
package cache
import (
"context"
"github.com/openimsdk/open-im-server/v3/pkg/common/storage/model"
)
type ApplicationCache interface {
2024-10-30 14:38:09 +08:00
LatestVersion(ctx context.Context, platform string, hot bool) (*model.Application, error)
2024-10-25 16:50:58 +08:00
DeleteCache(ctx context.Context, platforms []string) error
}