init project

This commit is contained in:
daniel muniz
2024-06-05 18:15:03 -03:00
commit 6d4e9bb221
6 changed files with 255 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
class CategoryConverterUseCase {
constructor(categoriesMapping) {
this.categoriesMapping = categoriesMapping
}
execute() {
}
}
module.export = { CategoryConverterUseCase }