feat: synced socket upload

This commit is contained in:
MingLiang Wang
2023-01-10 18:19:40 +08:00
parent 5723117cb8
commit c28407f77d
3 changed files with 48 additions and 14 deletions
+10
View File
@@ -196,4 +196,14 @@ export class BaseProvider {
): Promise<BlocksuiteWorkspace> {
return workspace;
}
/**
* merge one workspaces to another
* @param workspace
* @returns
*/
public async assign(to: BlocksuiteWorkspace, from: BlocksuiteWorkspace) {
from;
return to;
}
}