gosdk/wechat/cache/cache.go

12 lines
218 B
Go
Raw Normal View History

2024-01-22 22:34:59 +08:00
package cache
import "time"
// Cache interface
type Cache interface {
Get(key string) interface{}
Set(key string, val interface{}, timeout time.Duration) error
IsExist(key string) bool
Delete(key string) error
}