diff --git a/src/app.js b/src/app.js index 467c05b..0cd5e64 100644 --- a/src/app.js +++ b/src/app.js @@ -7,7 +7,9 @@ const getCategory = new GetCategoryUseCase(); const categoryConverter = new CategoryConverterUseCase({categoriesMapping}); module.exports = async function app(domain){ + console.log(domain) const category = await getCategory.execute(domain) + console.log(category) const categoryConverted = await categoryConverter.execute(category) console.log(categoryConverted) return categoryConverted