mirror of
https://github.com/actions/cache.git
synced 2026-02-22 04:22:04 +00:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { NonStateOutputSetter } from "./outputSetter";
|
|
import run from "./restoreImpl";
|
|
|
|
async function restoreOnly(): Promise<void> {
|
|
await run(new NonStateOutputSetter());
|
|
}
|
|
|
|
restoreOnly();
|
|
|
|
export default restoreOnly;
|