1
0
mirror of https://gitea.com/actions/cache.git synced 2025-02-24 12:40:45 +07:00
cache/src/restore.ts
2022-12-08 08:24:43 +00:00

11 lines
204 B
TypeScript

import restoreImpl from "./restoreImpl";
import { StateProvider } from "./stateProvider";
async function run(): Promise<void> {
await restoreImpl(new StateProvider());
}
run();
export default run;