All and specify lookup

This commit is contained in:
2023-09-20 14:59:36 +07:00
parent 668738e5e7
commit 817f27b85b
2 changed files with 31 additions and 2 deletions
+4 -1
View File
@@ -3,6 +3,7 @@ import { Client, Events, GatewayIntentBits } from 'discord.js';
export interface Config {
global: {
lookup_all: boolean;
discord_guild_id?: string;
discord_bot_token?: string;
steam_api_key?: string;
@@ -14,7 +15,9 @@ export interface Config {
class ConfigProvider {
private config: Config = {
global: {},
global: {
lookup_all: false
},
users: {}
};
private ready = false;