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]>
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
'use strict'
|
|
|
|
const crypto = require('pearcord-crypto')
|
|
|
|
module.exports = {
|
|
sealDmContent: crypto.sealDmContent,
|
|
openDmContent: crypto.openDmContent,
|
|
dmEncryptionAvailable: crypto.dmEncryptionAvailable
|
|
}
|