From 62981bd3903e36e1da026aa60f28cfbee2a43f40 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 23 Jul 2021 13:21:32 -0600 Subject: [PATCH] Add bracket data for resetting the bracket --- src/constants.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 7d23f5e..6b02db2 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,14 +1,16 @@ +export var BRACKET_DATA = { + msg: "", + quotes: [], + votes: {}, + users: {}, +}; + export var CHANNEL_DATA = { webhook: { token: "", id: "", }, - bracket: { - msg: "", - quotes: [], - votes: {}, - users: {}, - }, + bracket: BRACKET_DATA, }; export var DISCORD_API_URI: string = `https://discord.com/api/v8`; \ No newline at end of file