Browse Source

Rename variable

Volodymyr Tkach 2 years ago
parent
commit
03b85f15c0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/http/helpers/helpers.go

+ 2 - 2
utils/http/helpers/helpers.go

@@ -151,11 +151,11 @@ func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
 		w.Header().Set("Content-Type", "application/json")
 		w.WriteHeader(http.StatusBadRequest)
 
-		type respRoot struct {
+		type Resp struct {
 			Error string `json:"error"`
 		}
 
-		resp := respRoot{
+		resp := Resp{
 			Error: err.Error(),
 		}