From 38b478a9fb281aed969e5148b983163336e1e0b1 Mon Sep 17 00:00:00 2001 From: EvolutionX Date: Mon, 14 Feb 2022 09:50:16 +0530 Subject: [PATCH] lowercased Utilities --- src/handler/sern.ts | 6 +++--- src/index.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/handler/sern.ts b/src/handler/sern.ts index 0fa6c0a..e097ac2 100644 --- a/src/handler/sern.ts +++ b/src/handler/sern.ts @@ -1,12 +1,12 @@ -import * as Files from './Utilities/readFile'; -import type * as Utils from './Utilities/Preprocessors/args'; +import * as Files from './utilities/readFile'; +import type * as Utils from './utilities/Preprocessors/args'; import type { Arg, Context, Visibility, possibleOutput } from '../types/handler'; import type { ApplicationCommandOptionData, Awaitable, Client, CommandInteraction, Message } from 'discord.js'; import { Ok, Result, None, Some } from 'ts-results'; -import { isBot, hasPrefix, fmt } from './Utilities/messageHelpers'; +import { isBot, hasPrefix, fmt } from './utilities/messageHelpers'; import Logger from './logger'; /** diff --git a/src/index.ts b/src/index.ts index 6d1af5e..2568f39 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ import * as Sern from './handler/sern'; -import * as Utils from './handler/Utilities/Preprocessors/args'; +import * as Utils from './handler/utilities/Preprocessors/args'; import * as Types from './types/handler'; module.exports = { Sern, Utils, Types };