codev / src /cli /handlers /auth.ts
chenbhao's picture
chore: remove obsolete test and vendor source, add CLI SDK docs
b7c4c8f
Raw
History Blame Contribute Delete
651 Bytes
/**
* 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);
}