fix
This commit is contained in:
parent
ded70ac425
commit
bc317831bd
9 changed files with 14 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { CathError } from "../Error/CathError";
|
import { CathError } from "../Error/CathError";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
import { PerkData, ScorestreakData } from "./codmclient.interface";
|
import { PerkData, ScorestreakData } from "./codmclient.interface";
|
||||||
/**
|
/**
|
||||||
* @name APIClient
|
* @name APIClient
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
import { CodeData } from "./codeclient.interface";
|
import { CodeData } from "./codeclient.interface";
|
||||||
import { CathError } from "../Error/CathError";
|
import { CathError } from "../Error/CathError";
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
/**
|
/**
|
||||||
* @name ImageClient
|
* @name ImageClient
|
||||||
* @kind constructor
|
* @kind constructor
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
import { URLData } from "./urlclient.interface";
|
import { URLData } from "./urlclient.interface";
|
||||||
import { CathError } from "../Error/CathError";
|
import { CathError } from "../Error/CathError";
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
/**
|
/**
|
||||||
* Sends a 8ball response
|
* Sends a 8ball response
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { CathError } from "../Error/CathError";
|
import { CathError } from "../Error/CathError";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
/**
|
/**
|
||||||
* Sends a 8ball response
|
* Sends a 8ball response
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { CathError } from "../Error/CathError";
|
import { CathError } from "../Error/CathError";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
/**
|
/**
|
||||||
* Sends a 8ball response
|
* Sends a 8ball response
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { CathError } from "../Error/CathError";
|
import { CathError } from "../Error/CathError";
|
||||||
import config from "../utils/config.json";
|
import config from "../";
|
||||||
/**
|
/**
|
||||||
* Sends a superscript-ed word
|
* Sends a superscript-ed word
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -43,3 +43,9 @@ export { trimArray } from "./functions/trimArray";
|
||||||
export { superscript } from "./functions/superscript";
|
export { superscript } from "./functions/superscript";
|
||||||
export { doublestruck } from "./functions/doublestruck";
|
export { doublestruck } from "./functions/doublestruck";
|
||||||
export { fractur } from "./functions/fractur";
|
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;
|
||||||
|
|
Loading…
Reference in a new issue