#!/usr/bin/env node /** * auth-server — Background loopback OAuth callback server. * * Spawned as a detached child by auth-flow.ts. * Listens on 127.0.0.1:, waits for Google OAuth callback, * exchanges code for token, writes result to pending/.json, * updates accounts.json. * * Communicates with parent via: * 1. stdout: JSON line with { port, pid, authUrl } (parent reads this, then detaches) * 2. pending/.json file (poll target for subsequent CLI calls) * * Usage (not meant to be called directly): * node auth-server.js */ export {}; //# sourceMappingURL=auth-server.d.ts.map