mirror of
https://github.com/actions/cache.git
synced 2025-03-12 23:29:24 +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;
|