mirror of
https://github.com/weloe/token-go.git
synced 2025-10-13 03:03:41 +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)
|
|
}
|