1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00
This commit is contained in:
2022-11-18 16:57:23 +08:00
parent 278c8b4cb7
commit ea846a321a
5 changed files with 174 additions and 0 deletions

7
cache/local_cache.go vendored Normal file
View File

@ -0,0 +1,7 @@
package cache
type LocalCache interface {
Set(key string, data []byte)
Get(key string) ([]byte, bool)
Del(key string)
}