api-entities/http/error.go

10 lines
144 B
Go
Raw Permalink Normal View History

2022-12-18 20:51:26 +01:00
package http
type ErrorResponse struct {
Error string `json:"error"`
}
func Error(err string) *ErrorResponse {
return &ErrorResponse{err}
}