mirror of https://github.com/actions/cache.git
11 lines
203 B
TypeScript
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;
|