lowercased Utilities

This commit is contained in:
EvolutionX
2022-02-14 09:50:16 +05:30
parent 57392f4e6a
commit 38b478a9fb
2 changed files with 4 additions and 4 deletions

View File

@@ -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';
/**

View File

@@ -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 };