Files
pearcord-platform/platform-index-exports.js
T
Raven ScottandCursor 60a103a653 refactor(platform): Phase 734 secondary scopes and index exports finalize
Add foldersScope, enrichmentScope, threadsScope, botAuthScope, and
automationScope namespaces in index.js; consolidate automation-export,
bot-auth, and threads import modules; finalize exports via
platform-index-exports.js. No behavior or mesh semantics changes.

Co-authored-by: Cursor <[email protected]>
2026-06-03 10:24:52 -04:00

17 lines
422 B
JavaScript

'use strict'
const { bootstrapPearcordPlatform } = require('./platform-bootstrap')
/**
* Register PearcordPlatform export and apply prototype mixins (Phase 734).
*/
function finalizePearcordPlatformModule (PearcordPlatform, sharedScope) {
bootstrapPearcordPlatform(PearcordPlatform)
return {
PearcordPlatform,
USER_STATUS: sharedScope.USER_STATUS
}
}
module.exports = { finalizePearcordPlatformModule }