codev / src /cli /handlers /util.ts
chenbhao's picture
chore: remove obsolete test and vendor source, add CLI SDK docs
b7c4c8f
Raw
History Blame Contribute Delete
268 Bytes
/**
* Utility handlers
* These handlers are used by various CLI commands
*/
import type { Root } from '../../ink.js';
export async function setupTokenHandler(root: Root): Promise<void> {
console.error('Setup token handler not implemented');
process.exit(1);
}