10 lines
182 B
Go
10 lines
182 B
Go
package httpResponse
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func SomethingWentWrong(w http.ResponseWriter) {
|
|
JSONHandler(w, http.StatusInternalServerError, `{"error": "Something went wrong"}`)
|
|
}
|