Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/file-server/zfs/copy.ts
1447 views
1
/*
2
Copy between projects on this server
3
*/
4
5
export 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