mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-16 23:51:16 +01: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;
|