Add swarmScope, dmScope, appEventsScope, cryptoScope, channelMetaScope, permissionsScope, and hyperdbScope namespaces in index.js with dedicated import modules and platform-index-scope-registry.js (17 scopes). No behavior or mesh semantics changes. Co-authored-by: Cursor <[email protected]>
16 lines
497 B
JavaScript
16 lines
497 B
JavaScript
'use strict'
|
|
|
|
const swarm = require('pearcord-swarm-manager')
|
|
|
|
module.exports = {
|
|
boundedFlush: swarm.boundedFlush,
|
|
retryWire: swarm.retryWire,
|
|
GossipOutbox: swarm.GossipOutbox,
|
|
adaptiveBurstDelays: swarm.adaptiveBurstDelays,
|
|
nextRoundRobinIndex: swarm.nextRoundRobinIndex,
|
|
gossipLaneForLabel: swarm.gossipLaneForLabel,
|
|
discoveryMeshFlushListings: swarm.discoveryMeshFlushListings,
|
|
GuildTopicPool: swarm.GuildTopicPool,
|
|
computeGuildTopicPoolMax: swarm.computeGuildTopicPoolMax
|
|
}
|