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
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
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;