1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-07 20:42:53 +00:00
cache/src/save.ts
2022-12-06 18:26:58 +00:00

10 lines
195 B
TypeScript

import saveImpl from "./saveImpl";
import { StateProvider } from "./stateProvider";
async function run(): Promise<void> {
await saveImpl(new StateProvider());
}
run();
export default run;