mirror of
https://gitee.com/actions-mirror/cache.git
synced 2025-04-12 03:20:57 +08: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;
|