1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2024-09-20 01:46:43 +00:00

Calling methods from same file

This commit is contained in:
Sankalp Kotewar 2022-12-06 10:08:26 +00:00 committed by GitHub
parent a76826ef46
commit d6e98d9302
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -5,4 +5,6 @@ async function restore(): Promise<void> {
await run(new StateOutputSetter());
}
restore();
export default restore;

View file

@ -5,4 +5,6 @@ async function restoreOnly(): Promise<void> {
await run(new NonStateOutputSetter());
}
restoreOnly();
export default restoreOnly;