Merge pull request #302 from ZynerOrg/deepsource-transform-15bc1d77

Format code with standardjs and prettier
This commit is contained in:
Axel Olausson Holtenäs 2022-05-17 11:43:58 +02:00 committed by GitHub
commit 6990a88be7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,9 +24,9 @@ const main = async () => {
.catch(async (err) => { .catch(async (err) => {
logger.error(err); logger.error(err);
}); });
// Start schedule manager // Start schedule manager
await schedules(client) await schedules(client)
.then(async () => { .then(async () => {
logger.silly("Schedules process started"); logger.silly("Schedules process started");
}) })
@ -53,7 +53,7 @@ const main = async () => {
}); });
// Authorize with Discord's API // Authorize with Discord's API
await client.login(token); await client.login(token);
}; };
main() main()
.then(async () => { .then(async () => {