1/* 2Copy between projects on this server 3*/ 4 5export async function copy(opts: { 6 source_project_id: string; 7 target_project_id?: string; 8 source_path: string; 9 target_path: string; 10 rsyncOptions?: string; 11}) { 12 console.log("copy", opts); 13 throw Error("copy: not implemented"); 14} 15 16