2022-12-07 02:26:58 +08:00
|
|
|
import restoreImpl from "./restoreImpl";
|
2022-12-08 16:24:43 +08:00
|
|
|
import { StateProvider } from "./stateProvider";
|
2022-11-29 18:56:53 +08:00
|
|
|
|
2022-12-07 02:26:58 +08:00
|
|
|
async function run(): Promise<void> {
|
|
|
|
await restoreImpl(new StateProvider());
|
2019-10-31 02:48:49 +08:00
|
|
|
}
|
|
|
|
|
2022-12-07 02:26:58 +08:00
|
|
|
run();
|
|
|
|
|
|
|
|
export default run;
|