mirror of
https://github.com/actions/cache.git
synced 2024-11-13 01:24:04 +01:00
10 lines
204 B
TypeScript
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;
|