UNPKG

redis-smq

Version:

A high-performance, reliable, and scalable message queue for Node.js.

9 lines 349 B
import { FactoryAbstract } from './factory-abstract.js'; import { ConfigManager } from '../../config-manager/index.js'; export class ConfigManagerFactory extends FactoryAbstract { static create = () => { this.ensureInitialized(); return this.track(new ConfigManager()); }; } //# sourceMappingURL=config-manager-factory.js.map