Improve api

- TribufuApi
- TribufuBot
- TribufuClient
- TribufuServer
This commit is contained in:
Guilherme Werner 2023-12-31 23:43:01 -03:00
parent 882e2a631b
commit 5047dada7c
12 changed files with 961 additions and 535 deletions

21
src/constants.js Normal file
View file

@ -0,0 +1,21 @@
a// Copyright (c) Tribufu. All Rights Reserved.
import packageJson from "../package.json";
/**
* The version of the Tribufu SDK.
* @type {string}
*/
export const TRIBUFU_VERSION = packageJson.version;
/**
* The default Tribufu API URL.
* @type {string}
*/
export const TRIBUFU_API_URL = "https://api.tribufu.com";
/**
* The default Tribufu CDN URL.
* @type {string}
*/
export const TRIBUFU_CDN_URL = "https://cdn.tribufu.com";