mirror of
https://github.com/actions/cache.git
synced 2025-07-10 21:00:46 +00:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import restoreImpl from "./restoreImpl";
|
|
import { NullStateProvider } from "./stateProvider";
|
|
|
|
async function run(): Promise<void> {
|
|
await restoreImpl(new NullStateProvider(), { lookupOnly: true });
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|