forked from TrueCloudLab/frostfs-http-gw
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)
|
|
}
|