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:
parent
61a6f8c7c3
commit
98965cf952
1 changed files with 13 additions and 7 deletions
20
src/index.ts
20
src/index.ts
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue