Skip to content

Commit 2aac188

Browse files
committed
fix: move response error to dir response
1 parent 44d858c commit 2aac188

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

Diff for: src/modules/Response/ResponseError.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import BaseResponse from 'modules/Errors/BaseResponse'
2+
import BadRequest from 'modules/Errors/BadRequest'
3+
import NotFound from 'modules/Errors/NotFound'
4+
import Forbidden from 'modules/Errors/Forbidden'
5+
import Unauthorized from 'modules/Errors/Unauthorized'
6+
7+
const ResponseError = {
8+
BaseResponse,
9+
BadRequest,
10+
NotFound,
11+
Forbidden,
12+
Unauthorized,
13+
}
14+
15+
export default ResponseError

Diff for: src/modules/ResponseError.ts

-15
This file was deleted.

0 commit comments

Comments
 (0)