1
0
mirror of https://gitea.com/actions/cache.git synced 2025-05-18 17:59:25 +07:00
cache/src/restore.ts
2022-12-06 18:26:58 +00:00

11 lines
204 B
TypeScript

import { StateProvider } from "./stateProvider";
import restoreImpl from "./restoreImpl";
async function run(): Promise<void> {
await restoreImpl(new StateProvider());
}
run();
export default run;