This repository has been archived on 2022-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
shard/shard.js

5 lines
222 B
JavaScript

const { ShardingManager } = require('discord.js');
const manager = new ShardingManager('./index.js', { token: 'Token' });
manager.on('shardCreate', shard => console.log(`Launched shard ${shard.id}`));
manager.spawn();