1
0
mirror of https://gitea.com/actions/cache.git synced 2025-02-24 12:40:45 +07:00
cache/src/restore.ts
2022-12-05 11:36:14 +00:00

9 lines
195 B
TypeScript

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