mirror of
https://github.com/actions/cache.git
synced 2025-04-22 06:08:42 +00:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { StateOutputSetter } from "./outputSetter";
|
|
import run from "./restoreImpl";
|
|
|
|
async function restore(): Promise<void> {
|
|
await run(new StateOutputSetter());
|
|
}
|
|
|
|
export default restore;
|