From 81bb307896ba0503565768d77860db6180a1755b Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Thu, 8 Feb 2024 19:09:17 +0100 Subject: [PATCH] group imports in shared --- shared.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared.js b/shared.js index 4126019..2676949 100644 --- a/shared.js +++ b/shared.js @@ -1,4 +1,6 @@ +import { join } from 'path'; import { Op } from 'sequelize'; +import { readdir } from 'fs/promises'; import { Message, RoleEmojiPair } from './database.js'; const saveMessageData = async (id, role, emoji) => { @@ -62,8 +64,6 @@ export const addSelfRoles = async (interaction, msgID, role, emoji) => { }); } }; -import { join } from 'path'; -import { readdir } from 'fs/promises'; const required = ['data', 'execute']; const optional = ['autocomplete', 'modalSubmit'];