mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-15 11:41:17 +01:00
10 lines
212 B
TypeScript
10 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;
|