mirror of
https://github.com/actions/cache.git
synced 2025-05-22 08:41:47 +00:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import { NonStateOutputSetter } from "./outputSetter";
|
|
import run from "./restoreImpl";
|
|
|
|
async function restoreOnly(): Promise<void> {
|
|
await run(new NonStateOutputSetter());
|
|
}
|
|
|
|
export default restoreOnly;
|