Move PearcordPlatform to platform-pearcord-platform-class.js; add platform-index-bindings.js to unpack preamble exports (including id/now/guildTopic). index.js is now a thin finalize entry (7 lines). Registries for bindings, class, and entry line limits. No behavior change. Co-authored-by: Cursor <[email protected]>
12 lines
166 B
JavaScript
12 lines
166 B
JavaScript
'use strict'
|
|
|
|
const ix = require('./platform-index-preamble')
|
|
const { id, now, guildTopic } = ix.sharedScope
|
|
|
|
module.exports = {
|
|
...ix,
|
|
id,
|
|
now,
|
|
guildTopic
|
|
}
|