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]>
14 lines
499 B
JavaScript
14 lines
499 B
JavaScript
'use strict'
|
|
|
|
const channelMeta = require('pearcord-channel-meta')
|
|
const { createTopicMergeCounters } = require('pearcord-channel-meta/topic-merge-counters')
|
|
|
|
module.exports = {
|
|
normalizeTopic: channelMeta.normalizeTopic,
|
|
normalizeDescription: channelMeta.normalizeDescription,
|
|
canEditTopic: channelMeta.canEditTopic,
|
|
buildChannelSummary: channelMeta.buildChannelSummary,
|
|
ChannelDescriptionStore: channelMeta.ChannelDescriptionStore,
|
|
createTopicMergeCounters: createTopicMergeCounters
|
|
}
|