Format code with standardjs and prettier

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

Details: https://deepsource.io/gh/ZynerOrg/xyter/transform/3a37bf8c-ce14-4906-aea6-f735b702251d/
This commit is contained in:
deepsource-autofix[bot] 2022-05-17 08:28:25 +00:00 committed by GitHub
parent 61a6f8c7c3
commit 98965cf952
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,13 +14,19 @@ const main = async () => {
intents,
});
database();
schedules(client);
database();
schedules(client);
commands(client);
events(client);
commands(client);
events(client);
client.login(token);
}
client.login(token);
};
main().then(async () => {logger.silly("Main process started")}).catch(async (err) => {logger.error(err)})
main()
.then(async () => {
logger.silly("Main process started");
})
.catch(async (err) => {
logger.error(err);
});