1
0
mirror of https://gitea.com/actions/cache.git synced 2025-02-24 12:40:45 +07:00
cache/src/restore.ts

8 lines
129 B
TypeScript
Raw Normal View History

2022-11-29 16:55:41 +07:00
import restore from "./restoreImpl";
2022-11-29 16:55:41 +07:00
async function runRestoreStep(): Promise<void> {
await restore();
2019-10-31 01:48:49 +07:00
}
2022-11-29 16:55:41 +07:00
runRestoreStep();