mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
15 lines
217 B
JavaScript
15 lines
217 B
JavaScript
/**
|
|
* 缓存类
|
|
* @return {[type]} [description]
|
|
*/
|
|
var Cache = Class(function(){
|
|
return {
|
|
init: function(){
|
|
|
|
},
|
|
run: function(){
|
|
|
|
}
|
|
}
|
|
});
|
|
module.exports = Cache; |