10 lines
189 B
Go
10 lines
189 B
Go
|
// Copyright (c) Mainflux
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package httputil
|
||
|
|
||
|
// ErrorRes represents the HTTP error response body.
|
||
|
type ErrorRes struct {
|
||
|
Err string `json:"error"`
|
||
|
}
|