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

10
src/saveOnly.ts Normal file
View file

@ -0,0 +1,10 @@
import saveImpl from "./saveImpl";
import { NullStateProvider } from "./stateProvider";
async function run(): Promise<void> {
await saveImpl(new NullStateProvider());
}
run();
export default run;