@leyyo/cache
Version:
Common cache library
15 lines (14 loc) • 447 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CacheCommandAbstract = void 0;
// noinspection JSUnusedGlobalSymbols
class CacheCommandAbstract {
constructor(channel) {
this.channel = channel;
this.client = channel.client;
this.util = channel.util;
this.prop = channel.prop;
this.format = channel.format;
}
}
exports.CacheCommandAbstract = CacheCommandAbstract;