hamok
Version:
Lightweight Distributed Object Storage on RAFT consensus algorithm
13 lines (12 loc) • 376 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JoinNotification = void 0;
class JoinNotification {
sourcePeerId;
destinationPeerId;
constructor(sourcePeerId, destinationPeerId) {
this.sourcePeerId = sourcePeerId;
this.destinationPeerId = destinationPeerId;
}
}
exports.JoinNotification = JoinNotification;