@jonaskahn/maestro
Version:
Job orchestration made simple for Node.js message workflows
23 lines (21 loc) • 822 B
JavaScript
/**
* @license
* Copyleft (c) 2025 Jonas Kahn. All rights are not reserved.
*
* This source code is licensed under the MIT License found in the
* LICENSE file in the root directory of this source tree.
*
* Cache Implementation Exports
*
* Provides centralized access to concrete cache implementations that extend
* the AbstractCache interface. Includes the factory for dynamic cache client creation
* and specific implementations for different cache providers.
*
* @module implementations/cache
* @exports {Object} CacheClientFactory - Factory for creating appropriate cache clients
* @exports {Class} RedisCacheClient - Redis implementation of abstract cache interface
*/
module.exports = {
CacheClientFactory: require("./cache-client-factory"),
RedisCacheClient: require("./redis-cache-client"),
};