converting to string

This commit is contained in:
daniel muniz
2024-06-19 09:52:36 -03:00
parent 0d531a1182
commit a5416b6e2c
3 changed files with 1469 additions and 1469 deletions

View File

@@ -8,9 +8,9 @@ const categoryConverter = new CategoryConverterUseCase({categoriesMapping});
module.exports = async function app(domain){
const category = await getCategory.execute(domain)
console.log(category)
const categoryConverted = await categoryConverter.execute(category)
console.log(categoryConverted)
return categoryConverted
}