codev / src /cli /transports /ccrClient.ts
chenbhao's picture
chore: remove obsolete test and vendor source, add CLI SDK docs
b7c4c8f
Raw
History Blame Contribute Delete
594 Bytes
/**
* CCR Client
* This client is used for CCR (Claude Code Remote) communication
*/
export class CCRClient {
constructor() {
console.error('CCRClient not implemented');
}
async connect(): Promise<void> {
console.error('CCRClient.connect not implemented');
}
async disconnect(): Promise<void> {
console.error('CCRClient.disconnect not implemented');
}
async send(data: any): Promise<void> {
console.error('CCRClient.send not implemented');
}
async receive(): Promise<any> {
console.error('CCRClient.receive not implemented');
return null;
}
}