From 38ea7fb45d7f24033f444ac3b4d36048ec782514 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Sun, 18 Aug 2024 17:14:54 +0200 Subject: [PATCH] Fix indentation type --- src/config.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/config.ts b/src/config.ts index b5f0a4d..559f523 100644 --- a/src/config.ts +++ b/src/config.ts @@ -2,12 +2,12 @@ import { readFileSync } from 'fs'; import path from 'path'; interface Config { - bot_token: string; - json_db_path: string; - sequelize: { - force: boolean; - alter: boolean; - } + bot_token: string; + json_db_path: string; + sequelize: { + force: boolean; + alter: boolean; + } } const rawConfigData = readFileSync(path.join(process.cwd(), './config.json'), { encoding: 'utf-8' });