mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-24 20:35:32 +00:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import saveImpl from "./saveImpl";
|
|
import { StateProvider } from "./stateProvider";
|
|
|
|
async function run(): Promise<void> {
|
|
await saveImpl(new StateProvider());
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|