codev / src /cli /update.ts
chenbhao's picture
chore: remove obsolete test and vendor source, add CLI SDK docs
b7c4c8f
Raw
History Blame Contribute Delete
204 Bytes
/**
* Update command handler
* This handler is used by the CLI update command
*/
export async function update(): Promise<void> {
console.error('Update handler not implemented');
process.exit(1);
}