mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 07:20:08 +00:00
* feat: all emoji rest methods * Fix code style issues with ESLint Co-authored-by: Lint Action <lint-action@samuelmeuli.com>
8 lines
267 B
JavaScript
8 lines
267 B
JavaScript
module.exports = async (client, payload) => {
|
|
client.user = client.users.forge(payload.user);
|
|
if (payload.shardId === client.gateway.lastShardId) {
|
|
// All Shards are ready
|
|
console.log("Successfully connected to the gateway as " + client.user.tag);
|
|
}
|
|
};
|