(env: NodeJS.ProcessEnv = process.env)
| 56 | } |
| 57 | |
| 58 | export function resolveCodexAuthPath(env: NodeJS.ProcessEnv = process.env): string { |
| 59 | return path.join(resolveCodexHome(env), 'auth.json'); |
| 60 | } |
| 61 | |
| 62 | export function readCodexAuthState( |
| 63 | authPathOrOptions: string | { authPath?: string; env?: NodeJS.ProcessEnv } = {}, |
no test coverage detected