mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-06 06:17:48 +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;
|