mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-06 12:05:53 +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;
|