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

12 lines
282 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 {
LatestVersion(ctx context.Context, platform string) (*model.Application, error)
DeleteCache(ctx context.Context, platforms []string) error
}