mirror of
https://github.com/actions/cache.git
synced 2024-11-14 01:51:46 +01:00
10 lines
203 B
TypeScript
10 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;
|