1
mirror of https://github.com/actions/cache.git synced 2026-02-14 22:20:33 +00:00
Files
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;