10 lines
144 B
Go
10 lines
144 B
Go
|
package http
|
||
|
|
||
|
type ErrorResponse struct {
|
||
|
Error string `json:"error"`
|
||
|
}
|
||
|
|
||
|
func Error(err string) *ErrorResponse {
|
||
|
return &ErrorResponse{err}
|
||
|
}
|