2022-12-06 18:26:58 +00:00
|
|
|
import { StateProvider } from "./stateProvider";
|
|
|
|
|
import restoreImpl from "./restoreImpl";
|
2022-11-29 10:56:53 +00:00
|
|
|
|
2022-12-06 18:26:58 +00:00
|
|
|
async function run(): Promise<void> {
|
|
|
|
|
await restoreImpl(new StateProvider());
|
2019-10-30 14:48:49 -04:00
|
|
|
}
|
|
|
|
|
|
2022-12-06 18:26:58 +00:00
|
|
|
run();
|
|
|
|
|
|
|
|
|
|
export default run;
|