diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-03 15:00:03 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-03 15:00:03 +0530 |
commit | 95dfc551f7eaaf6e8ebdefce1b733951354ac40d (patch) | |
tree | ecabef39a94084c456eaf32bb508d8809d592c9f /errors/errors.go | |
parent | fc83df70b787e447bf31f4d99fa723c7e38544f2 (diff) |
added JWT authorization middleware
Diffstat (limited to 'errors/errors.go')
-rw-r--r-- | errors/errors.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/errors/errors.go b/errors/errors.go index 1cae027..16e1646 100644 --- a/errors/errors.go +++ b/errors/errors.go @@ -23,7 +23,7 @@ import ( var ( // 204 - ErrEmptyResponse = errors.New("No Records Found") + ErrEmptyResponse = errors.New("No Records Found") // 400 ErrNoWhereCondition = errors.New("No Where Condition") @@ -38,6 +38,9 @@ var ( // 401 ErrWrongPassword = errors.New("Wrong Password") + ErrInvalidAuthHeader = errors.New("Invalid Authorization Header") + ErrUnauthorized = errors.New("Unauthorized") + ErrSessionExpired = errors.New("Session Expired") // 404 ErrNotFound = errors.New("Not Found") |