mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
11 lines
200 B
Go
11 lines
200 B
Go
package cache
|
|
|
|
import "context"
|
|
|
|
// var emptyCache DistributedCache = &emptyCacheAdapter{}
|
|
|
|
type emptyCacheAdapter struct {
|
|
}
|
|
|
|
func (*emptyCacheAdapter) Delete(ctx context.Context, keys ...string) {}
|