mirror of
https://github.com/actions/cache
synced 2026-06-01 11:16:09 -07:00
11 lines
207 B
TypeScript
11 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;
|