src/lib/auth.ts
/**
* Token store helpers — re-exports from linkedin.ts for symmetry with
* other wave-3 projects (which expect a lib/auth.ts).
*
* 2026-05-06 (tick 53): scaffolded. The real OAuth + token-management
* logic lives in lib/linkedin.ts. This file just re-exports so that
* future cross-project shims (sister-auth, audit) can import from a
* predictable path.
*/
export { getToken, saveToken, authorizeUrl, exchangeCode } from './linkedin.js';