mirror of
https://github.com/actions/cache.git
synced 2025-01-15 21:15:38 +00:00
9 lines
195 B
TypeScript
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;
|