mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-06 03:55:52 +00:00
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { StateProvider } from "./stateProvider";
|
|
import restoreImpl from "./restoreImpl";
|
|
|
|
async function run(): Promise<void> {
|
|
await restoreImpl(new StateProvider());
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|