Skip to content

Commit

Permalink
Fix indentation type
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjvs committed Aug 18, 2024
1 parent cc8239d commit 38ea7fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' });
Expand Down

0 comments on commit 38ea7fb

Please sign in to comment.