From af8550b5a2a19435177afd1c2a651b4061c7105f Mon Sep 17 00:00:00 2001 From: Emily J Date: Wed, 28 Oct 2020 12:17:43 +1100 Subject: [PATCH] new constants --- bot/constants/categories.json | 5 +++++ bot/constants/index.js | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 bot/constants/categories.json diff --git a/bot/constants/categories.json b/bot/constants/categories.json new file mode 100644 index 0000000..9ef028c --- /dev/null +++ b/bot/constants/categories.json @@ -0,0 +1,5 @@ +{ + "Configuration": "Configuration", + "Developer": "Developer", + "Test": "Test" +} \ No newline at end of file diff --git a/bot/constants/index.js b/bot/constants/index.js index b1d9237..dd0f0bd 100644 --- a/bot/constants/index.js +++ b/bot/constants/index.js @@ -1,5 +1,6 @@ module.exports = { activities: require('./activities.json'), colours: require('./colours.json'), - emojis: require('./emojis.json') + emojis: require('./emojis.json'), + categories: require('./categories.json') }; \ No newline at end of file