1
0
mirror of https://github.com/actions/cache.git synced 2026-03-29 14:02:49 +00:00
Files
cache/src/restoreOnly.ts
2022-12-06 18:26:58 +00:00

11 lines
212 B
TypeScript

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