mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-08 04:11:06 +00:00
21 lines
440 B
JavaScript
21 lines
440 B
JavaScript
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";
|