feat: remove workspace & cloud sync

This commit is contained in:
DarkSky
2023-01-02 19:55:38 +08:00
committed by DarkSky
parent 7fea77b64f
commit c0626cf8ac
13 changed files with 101 additions and 30 deletions

View File

@@ -1,4 +1,5 @@
export const getDataCenter = () =>
import('../src/datacenter/index.js').then(async dataCenter =>
dataCenter.getDataCenter()
export const getDataCenter = () => {
return import('../src/datacenter/index.js').then(async dataCenter =>
dataCenter.getDataCenter(false)
);
};