UNPKG

discord.js-self

Version:

A fork of discord.js with support of user accounts

11 lines (6 loc) 281 B
'use strict'; const { token } = require('./auth'); const Discord = require('../src'); const sharder = new Discord.ShardingManager(`${process.cwd()}/test/shard.js`, { token, respawn: false }); sharder.on('launch', shard => console.log(`launched ${shard.id}`)); sharder.spawn();