Dashboard  2
Lot's of data
Loading...
Searching...
No Matches
token_management.ts
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** area-rattrapage
4** File description:
5** token_management.ts
6*/
7
8export namespace TokenManagement {
9 /**
10 * Function to check if the token is valid
11 * @param {string} token - The token to validate
12 * @returns {boolean} Whether the token is valid or not
13 */
14 export function is_token_correct(token: string): boolean {
15 return true;
16 };
17};