UNPKG

redis-smq

Version:

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

9 lines 354 B
import { FactoryAbstract } from './factory-abstract.js'; import { ConsumerGroups } from '../../consumer-groups/index.js'; export class ConsumerGroupsFactory extends FactoryAbstract { static create = () => { this.ensureInitialized(); return this.track(new ConsumerGroups()); }; } //# sourceMappingURL=consumer-groups-factory.js.map