forked from TrueCloudLab/frostfs-http-gw
6265fcb26a
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
7 lines
142 B
Go
7 lines
142 B
Go
package response
|
|
|
|
import "github.com/valyala/fasthttp"
|
|
|
|
func Error(r *fasthttp.RequestCtx, msg string, code int) {
|
|
r.Error(msg+"\n", code)
|
|
}
|