Initializes the token store, loading tokens from persistent storage and scheduling refresh if needed
Delegates to the token-init module's initTokenStore function, preserving the same function signature for backward compatibility.
// Initialize during app startupimport { initTokenStore } from "./auth/storage/token-store";initTokenStore();console.log("Token system initialized"); Copy
// Initialize during app startupimport { initTokenStore } from "./auth/storage/token-store";initTokenStore();console.log("Token system initialized");
Use initTokenStore from token-init directly
export function initTokenStore(): void { initTokenStoreOp();} Copy
export function initTokenStore(): void { initTokenStoreOp();}
Initializes the token store, loading tokens from persistent storage and scheduling refresh if needed
Delegates to the token-init module's initTokenStore function, preserving the same function signature for backward compatibility.