Add swarmScope, dmScope, appEventsScope, cryptoScope, channelMetaScope, permissionsScope, and hyperdbScope namespaces in index.js with dedicated import modules and platform-index-scope-registry.js (17 scopes). No behavior or mesh semantics changes. Co-authored-by: Cursor <[email protected]>
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
'use strict'
|
|
|
|
const dm = require('pearcord-dm')
|
|
|
|
module.exports = {
|
|
PearcordDM: dm.PearcordDM,
|
|
DmChannelMetaStore: dm.DmChannelMetaStore,
|
|
DmPollStore: dm.DmPollStore,
|
|
DM_GUILD_ID: dm.DM_GUILD_ID,
|
|
dmChannelId: dm.dmChannelId,
|
|
listDmConversations: dm.listDmConversations
|
|
}
|