api-entities/http/error.go
2022-12-18 21:10:32 +01:00

10 lines
144 B
Go

package http
type ErrorResponse struct {
Error string `json:"error"`
}
func Error(err string) *ErrorResponse {
return &ErrorResponse{err}
}