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/4fb6bb32-c06b-48bd-834b-0bcb329b4e85/
This commit is contained in:
deepsource-autofix[bot] 2022-05-17 08:25:43 +00:00 committed by GitHub
parent 0e17d18141
commit adfcfc351e
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);