mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 10:12:55 +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;
|