1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2024-10-17 14:44:42 +02:00
cache/src/restore.ts
2022-12-08 08:24:43 +00:00

10 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;