Wired up the getComicCovers call

This commit is contained in:
2021-05-05 19:30:15 -07:00
parent 625554808a
commit 13c029a123
3 changed files with 5 additions and 4 deletions

View File

@@ -20,11 +20,12 @@ export const greet = async (
};
const fileObjects = await walkFolder("./comics");
return await extractCoverFromComicBookArchive(
const fo = await extractCoverFromComicBookArchive(
{
...targetOptions,
paginationOptions: pagingConfig,
},
fileObjects,
);
return JSON.stringify(fo);
};