1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-09 15:47:48 +02:00
cache/src/restore.ts

9 lines
195 B
TypeScript
Raw Normal View History

2022-12-05 11:36:14 +00:00
import { StateOutputSetter } from "./outputSetter";
import run from "./restoreImpl";
2022-11-29 10:56:53 +00:00
async function restore(): Promise<void> {
2022-12-05 11:36:14 +00:00
await run(new StateOutputSetter());
2019-10-30 14:48:49 -04:00
}
export default restore;