1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 16:30:58 -05:00
Daggerbot-TS/src/helpers/ConfigHelper.ts
2023-10-09 09:03:17 +11:00

19 lines
643 B
TypeScript

import {readFileSync} from 'node:fs';
import {Config} from '../typings/interfaces';
export default class ConfigHelper {
static loadConfig() {
let importconfig:Config;
try {
importconfig = JSON.parse(readFileSync(process.argv[2] ?? 'src/config.json', 'utf8'));
console.log(`Loaded the config :: ${importconfig.configName}`);
} catch (e) {
console.error(`Error loading config file "${process.argv[2] ?? 'src/config.json'}": ${e}`);
process.exit(1);
}
return importconfig;
}
static readConfig() {
return JSON.parse(readFileSync(process.argv[2] ?? 'src/config.json', 'utf8')) as Config;
}
}