mirror of
https://gitea.com/actions/cache.git
synced 2024-11-10 22:42:28 +08: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;
|