This commit is contained in:
NK 2023-04-06 12:35:46 +01:00
parent ded70ac425
commit bc317831bd
9 changed files with 14 additions and 8 deletions

View file

@ -1,6 +1,6 @@
import axios from "axios";
import { CathError } from "../Error/CathError";
import config from "../utils/config.json";
import config from "../";
import { PerkData, ScorestreakData } from "./codmclient.interface";
/**
* @name APIClient

View file

@ -1,5 +1,5 @@
import axios from "axios";
import config from "../utils/config.json";
import config from "../";
import { CodeData } from "./codeclient.interface";
import { CathError } from "../Error/CathError";
/**

View file

@ -1,4 +1,4 @@
import config from "../utils/config.json";
import config from "../";
/**
* @name ImageClient
* @kind constructor

View file

@ -1,5 +1,5 @@
import axios from "axios";
import config from "../utils/config.json";
import config from "../";
import { URLData } from "./urlclient.interface";
import { CathError } from "../Error/CathError";
/**

View file

@ -1,5 +1,5 @@
import axios from "axios";
import config from "../utils/config.json";
import config from "../";
/**
* Sends a 8ball response
*/

View file

@ -1,6 +1,6 @@
import axios from "axios";
import { CathError } from "../Error/CathError";
import config from "../utils/config.json";
import config from "../";
/**
* Sends a 8ball response
*/

View file

@ -1,6 +1,6 @@
import axios from "axios";
import { CathError } from "../Error/CathError";
import config from "../utils/config.json";
import config from "../";
/**
* Sends a 8ball response
*/

View file

@ -1,6 +1,6 @@
import axios from "axios";
import { CathError } from "../Error/CathError";
import config from "../utils/config.json";
import config from "../";
/**
* Sends a superscript-ed word
*/

View file

@ -43,3 +43,9 @@ export { trimArray } from "./functions/trimArray";
export { superscript } from "./functions/superscript";
export { doublestruck } from "./functions/doublestruck";
export { fractur } from "./functions/fractur";
let config = {
api: "https://cath-api.vercel.app",
code: "https://code.night0721.me",
url: "https://url.night0721.me",
};
export default config;