mirror of
https://gitea.com/actions/cache.git
synced 2024-11-13 07:52:28 +08:00
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;
|