1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2024-10-17 06:34:41 +02:00
cache/src/restore.ts
2022-12-06 18:26:58 +00:00

10 lines
204 B
TypeScript

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