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]>
This commit is contained in:
Raven Scott
2026-06-03 10:10:58 -04:00
co-authored by Cursor
parent 59314420af
commit 584d1a1565
8 changed files with 313 additions and 24 deletions
+10
View File
@@ -0,0 +1,10 @@
'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 }