update save as well

This commit is contained in:
Bishal Prasad 2022-12-06 18:26:58 +00:00
parent d95c048983
commit ac8fc97c06
12 changed files with 700 additions and 569 deletions

View file

@ -1,8 +1,10 @@
import { StateOutputSetter } from "./outputSetter";
import run from "./restoreImpl";
import { StateProvider } from "./stateProvider";
import restoreImpl from "./restoreImpl";
async function restore(): Promise<void> {
await run(new StateOutputSetter());
async function run(): Promise<void> {
await restoreImpl(new StateProvider());
}
export default restore;
run();
export default run;