Skip to content

Commit

Permalink
lint: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dopimentel committed Feb 21, 2024
1 parent 757ca0f commit 48e92b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/controllers/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const userController = require('./userController');
const loginController = require('./loginController');
const categoryController = require('./categoryController');
const categoryController = require('./categoryController.js');

module.exports = {
userController,
Expand Down
2 changes: 1 addition & 1 deletion src/services/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const userService = require('./userService');
const loginService = require('./loginService');
const categoryService = require('./categoryService');
const categoryService = require('./categoryService.js');

module.exports = {
userService,
Expand Down
2 changes: 1 addition & 1 deletion src/services/validations/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const loginValidation = require('./loginValidation');
const createUserValidation = require('./createUserValidation');
const createCategoryValidation = require('./createCategoryValidation');
const createCategoryValidation = require('./createCategoryValidation.js');

module.exports = {
loginValidation,
Expand Down

0 comments on commit 48e92b0

Please sign in to comment.