4
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-11-08 02:56:56 +00:00
cache/src/restore.ts
2022-12-06 10:08:26 +00:00

10 lines
207 B
TypeScript

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