Extract platform-pearcord-shared-imports, platform-index-local-imports, platform-bootstrap, and explicit delivery-receipts named exports (173). Add ALL_GOSSIP_ALIGNMENT_ROWS and PLATFORM_MIXIN_ASSIGNMENT_COUNT guard. No behavior or mesh semantics changes. Co-authored-by: Cursor <[email protected]>
11 lines
315 B
JavaScript
11 lines
315 B
JavaScript
'use strict'
|
|
|
|
const { applyPlatformMixins } = require('./apply-platform-mixins')
|
|
|
|
/** Apply all prototype mixins after PearcordPlatform class definition (Phase 731). */
|
|
function bootstrapPearcordPlatform (PearcordPlatform) {
|
|
applyPlatformMixins(PearcordPlatform)
|
|
}
|
|
|
|
module.exports = { bootstrapPearcordPlatform }
|