1
0
Files
cache/src/restore.ts
T

11 lines
204 B
TypeScript
Raw Normal View History

2022-12-21 19:38:44 +05:30
import restoreImpl from "./restoreImpl";
import { StateProvider } from "./stateProvider";
2019-10-30 14:48:49 -04:00
2019-11-13 06:48:02 +09:00
async function run(): Promise<void> {
2022-12-21 19:38:44 +05:30
await restoreImpl(new StateProvider());
2019-10-30 14:48:49 -04:00
}
run();
export default run;