This commit is contained in:
hoteas
2018-04-04 18:44:00 +00:00
parent c3d0b64d72
commit 3488eab401
7 changed files with 369 additions and 113 deletions
+3 -3
View File
@@ -6,9 +6,9 @@ type Proj map[string]Ctr
type Router map[string]Proj
type CacheIns interface {
set(key string, value interface{}, time int64)
get(key string) interface{}
delete(key string)
//set(key string, value interface{}, time int64)
//get(key string) interface{}
//delete(key string)
Cache(key string, data ...interface{}) *Obj
}