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 { NonStateOuputSetter } from "./outputSetter";
import run from "./restoreImpl";
import restoreImpl from "./restoreImpl";
import { NullStateProvider } from "./stateProvider";
async function restoreOnly(): Promise<void> {
await run(new NonStateOuputSetter());
async function run(): Promise<void> {
await restoreImpl(new NullStateProvider());
}
export default restoreOnly;
run();
export default run;