diff --git a/src/commands/utils/vm.ts b/src/commands/utils/vm.ts index a726842..dfae999 100644 --- a/src/commands/utils/vm.ts +++ b/src/commands/utils/vm.ts @@ -14,9 +14,9 @@ * You should have received a copy of the GNU General Public License * along with ArgonBot. If not, see . */ -import { NodeVM } from 'vm2'; -import { transpile } from 'typescript'; import Command from '@structures/command'; +import { transpile } from 'typescript'; +import { NodeVM } from 'vm2'; import type { Client, Message } from 'discord.js'; diff --git a/src/lib/structures/command.ts b/src/lib/structures/command.ts index 7b062bb..8faf6db 100644 --- a/src/lib/structures/command.ts +++ b/src/lib/structures/command.ts @@ -14,11 +14,11 @@ * You should have received a copy of the GNU General Public License * along with ArgonBot. If not, see . */ -import path from 'path'; +import type { ICommandOptions } from '@utils/types'; import config from 'config'; +import path from 'path'; import type { Client, Message } from 'discord.js'; -import type { ICommandOptions } from '@utils/types'; export default abstract class Command { public readonly client: Client;