mirror of
https://github.com/actions/cache.git
synced 2025-04-10 12:11:27 +02:00
10 lines
207 B
TypeScript
10 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;
|