mirror of
https://git.mirrors.martin98.com/https://github.com/actions/cache
synced 2026-03-03 17:22:59 +08:00
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import restoreImpl from "./restoreImpl";
|
|
import { NullStateProvider } from "./stateProvider";
|
|
|
|
async function run(): Promise<void> {
|
|
await restoreImpl(new NullStateProvider());
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|