File size: 651 Bytes
b7c4c8f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /**
* 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);
} |