export type JWT = {
    exp: number;
    iat: number;
    sub: string;
    jti: string;
};
