| /** | |
| * Auth command handlers | |
| * These handlers are used by the CLI auth commands | |
| */ | |
| export async function installOAuthTokens(result: any): Promise<void> { | |
| console.error('Install OAuth tokens handler not implemented'); | |
| process.exit(1); | |
| } | |
| export async function authLogin(options: any): Promise<void> { | |
| console.error('Auth login handler not implemented'); | |
| process.exit(1); | |
| } | |
| export async function authLogout(): Promise<void> { | |
| console.error('Auth logout handler not implemented'); | |
| process.exit(1); | |
| } | |
| export async function authStatus(opts: any): Promise<void> { | |
| console.error('Auth status handler not implemented'); | |
| process.exit(1); | |
| } |