updated console and server repo name

This commit is contained in:
strawmanbobi
2025-10-28 10:30:20 +08:00
parent 8c11d328ad
commit 7d8c328813
208 changed files with 1 additions and 64 deletions

View File

@@ -0,0 +1,22 @@
/**
* Created by strawmanbobi
* 2014-12-01.
*/
let BaseCache = function(_cacheType, _host, _port, _user, _password) {
throw new Error("Abstract class");
};
BaseCache.prototype.set = function(key, value, ttl, callback) {
throw new Error("Could not implemented");
};
BaseCache.prototype.get = function(key, callback) {
throw new Error("Could not implemented");
};
BaseCache.prototype.delete = function(key, callback) {
throw new Error("Could not implemented");
};
module.exports = BaseCache;