fix non-format eslint in src/

This commit is contained in:
Michael C
2021-07-12 02:12:22 -04:00
parent 9445a06871
commit c0b1d201ad
66 changed files with 829 additions and 834 deletions

View File

@@ -1,5 +1,5 @@
import {config} from "./config";
import {initDb} from './databases/databases';
import {initDb} from "./databases/databases";
import {createServer} from "./app";
import {Logger} from "./utils/logger";
import {startAllCrons} from "./cronjob";
@@ -8,7 +8,7 @@ async function init() {
await initDb();
createServer(() => {
Logger.info("Server started on port " + config.port + ".");
Logger.info(`Server started on port ${config.port}.`);
// ignite cron job after server created
startAllCrons();