mirror of
https://github.com/weloe/token-go.git
synced 2025-10-30 02:21:46 +08:00
8 lines
123 B
Go
8 lines
123 B
Go
package cache
|
|
|
|
type CacheEx interface {
|
|
Cache
|
|
Range(func(key, value interface{}) bool)
|
|
EnableCleanTimer(period int64)
|
|
}
|