From 97c05f168d2b9a7632d806d0f48511c877f88cd9 Mon Sep 17 00:00:00 2001 From: ZomoXYZ Date: Tue, 29 Mar 2022 22:56:55 -0500 Subject: [PATCH] test --- src/{discord/index.ts => discord.ts} | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) rename src/{discord/index.ts => discord.ts} (84%) diff --git a/src/discord/index.ts b/src/discord.ts similarity index 84% rename from src/discord/index.ts rename to src/discord.ts index e1a6097..7aa970d 100644 --- a/src/discord/index.ts +++ b/src/discord.ts @@ -1,8 +1,8 @@ -import { basicObject, basicObjectStringable, embedObject, LangObj } from '../types'; -import { convertBasicObject, template } from '../util'; -import { embedDataType } from './types'; -import { embedObjEmbed } from './util'; -import Lang, { getLang } from '..'; +import { basicObject, basicObjectStringable, embedObject, LangObj } from './types'; +import { convertBasicObject, template } from './util'; +import { embedDataType } from './discord/types'; +import { embedObjEmbed } from './discord/util'; +import Lang, { getLang } from '.'; /** * reads language json as an object (could be embed or just string) @@ -57,9 +57,9 @@ function getEmbed(id: string, argsraw: basicObjectStringable = {}, otherOptions: return embedData; } -export * from './types'; -export * from './util'; -export * from '..'; +export * from './discord/types'; +export * from './discord/util'; +export * from '.'; export default { ...Lang,