Files
pearcord-platform/platform-bootstrap.js
T
Raven ScottandCursor 584d1a1565 refactor(platform): Phase 731 index import bundles and bootstrap
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]>
2026-06-03 10:10:58 -04:00

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 }