1
0
Files
cache/src/restore.ts
T

8 lines
129 B
TypeScript
Raw Normal View History

2022-11-29 09:55:41 +00:00
import restore from "./restoreImpl";
2020-03-18 22:35:13 +09:00
2022-11-29 09:55:41 +00:00
async function runRestoreStep(): Promise<void> {
await restore();
2019-10-30 14:48:49 -04:00
}
2022-11-29 09:55:41 +00:00
runRestoreStep();