Files
magistrala/api/http/util/responses.go
T
Dušan Borovčanin f0d014eba2 NOISSUE - Move API to the common package (#2608)
Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com>
2024-12-19 18:29:53 +01:00

11 lines
223 B
Go

// Copyright (c) Abstract Machines
// SPDX-License-Identifier: Apache-2.0
package util
// ErrorRes represents the HTTP error response body.
type ErrorRes struct {
Err string `json:"error"`
Msg string `json:"message"`
}