1
0
mirror of https://gitea.com/actions/cache.git synced 2025-02-24 12:40:45 +07:00
cache/src/saveOnly.ts
2022-12-06 18:26:58 +00:00

11 lines
203 B
TypeScript

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