1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-07 20:42:53 +00:00
cache/src/restore.ts
2022-12-05 11:36:14 +00:00

8 lines
195 B
TypeScript

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