mirror of
https://github.com/actions/cache.git
synced 2024-11-22 18:01:26 +01: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;
|