mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
8 lines
124 B
Go
8 lines
124 B
Go
package cache
|
|
|
|
type LocalCache interface {
|
|
Set(key string, data []byte)
|
|
Get(key string) ([]byte, bool)
|
|
Del(key string)
|
|
}
|