Files
ScanCodeLogin/NodeServer/BroadcastChannel/index.js
2024-09-27 01:09:14 +08:00

7 lines
250 B
JavaScript

const { BroadcastChannel } = require('broadcast-channel');
module.exports = {
SubscribeExpired: new BroadcastChannel('SubscribeExpired'),
SweepStatus: new BroadcastChannel('SweepStatus'),
AuthorizedWeb: new BroadcastChannel('AuthorizedWeb')
};