• 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.

    Returns void

    // Initialize during app startup
    import { initTokenStore } from "./auth/storage/token-store";

    initTokenStore();
    console.log("Token system initialized");

    Use initTokenStore from token-init directly

    export function initTokenStore(): void {
    initTokenStoreOp();
    }