in lib/poller/util.ts [2:9]
export function getEnv(key: string): string { const value = process.env[key]; if (!value) { throw new Error(`Missing environment variable ${key}`); } return value; }