mirror of
https://github.com/actions/cache.git
synced 2025-06-18 23:02:57 -06:00
8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
import { NonStateOuputSetter } from "./outputSetter";
|
|
import run from "./restoreImpl";
|
|
|
|
async function restoreOnly(): Promise<void> {
|
|
await run(new NonStateOuputSetter());
|
|
}
|
|
|
|
export default restoreOnly;
|