Skip to content

Commit

Permalink
fix: remove logHandler import
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Russo committed Jul 20, 2022
1 parent e521d95 commit 4702c85
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
32 changes: 31 additions & 1 deletion config/info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
{
"http": ["Express", "Koa"],
"orm": ["Mongoose", "TypeORM", "MikroORM"]
"orm": ["Mongoose", "TypeORM", "MikroORM"],
"domains": [
{
"name": "App",
"fileInfra": "Base"
},
{
"name": "Auth",
"fileInfra": "Token"
},
{
"name": "File",
"fileInfra": "File"
},
{
"name": "Item",
"fileInfra": "Item"
},
{
"name": "Notification",
"fileInfra": "Notification"
},
{
"name": "Role",
"fileInfra": "Role"
},
{
"name": "User",
"fileInfra": "User"
}
]
}
1 change: 0 additions & 1 deletion src/App/Presentation/Shared/Http/Express/AppExpress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import '../../../../../Role/Presentation/Handlers/Express/RoleHandler';
import '../../../../../File/Presentation/Handlers/Express/FileHandler';
import '../../../../../Notification/Presentation/Handlers/Express/NotificationHandler';
import '../../../../Tests/Express/WhiteListHandler';
import '../../../Handlers/Express/LogHandler';

import AuthenticationMiddleware from '../../../../../Auth/Presentation/Middlewares/Express/AuthenticationMiddleware';
import { ErrorHandler } from './ErrorHandler';
Expand Down

0 comments on commit 4702c85

Please sign in to comment.