From 93d89995b51db21d50177eaeec472efeb19b1103 Mon Sep 17 00:00:00 2001 From: Guilherme Werner Date: Wed, 2 Oct 2024 21:07:53 -0300 Subject: [PATCH] Update constants.ts --- src/constants.ts | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 15e9da5..34b47b1 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -8,17 +8,22 @@ import packageJson from "../package.json"; */ export const TRIBUFU_VERSION: string = packageJson.version; -/** - * The default Tribufu API URL. - */ -export const TRIBUFU_API_URL: string = "https://api.tribufu.com"; - /** * The default Tribufu WEB URL. */ export const TRIBUFU_WEB_URL: string = "https://www.tribufu.com"; +/** + * The default Tribufu API URL. + */ +export const TRIBUFU_API_URL: string = "https://api.tribufu.com"; + /** * The default Tribufu CDN URL. */ export const TRIBUFU_CDN_URL: string = "https://cdn.tribufu.com"; + +/** + * Tribufu copyright notice. + */ +export const TRIBUFU_COPYRIGHT = `© ${new Date().getFullYear()} Tribufu.`;