Format code with standardjs and prettier

This commit fixes the style issues introduced in 0e17d18 according to the output
from standardjs and prettier.

Details: https://deepsource.io/gh/ZynerOrg/xyter/transform/5fe95853-443c-42e6-8991-b4f60bc662b9/
This commit is contained in:
deepsource-autofix[bot] 2022-05-17 08:27:02 +00:00 committed by GitHub
parent 0e17d18141
commit 89a2001b21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,14 +9,14 @@ import schedules from "@schedules";
import events from "@handlers/events";
import commands from "@handlers/commands";
const client = new Client({
intents,
});
const client = new Client({
intents,
});
database();
schedules(client);
database();
schedules(client);
commands(client);
events(client);
commands(client);
events(client);
client.login(token);
client.login(token);