murlock
Version:
A distributed locking solution for NestJS, providing a decorator for critical sections with Redis-based synchronization.
11 lines • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MurLockRedisException = void 0;
class MurLockRedisException extends Error {
constructor(message) {
super(message);
this.name = "MurLockRedisException";
}
}
exports.MurLockRedisException = MurLockRedisException;
//# sourceMappingURL=murlock-redis.exception.js.map