2 Star 3 Fork 0

newdas/video_server

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
response.go 183 Bytes
Copy Edit Raw Blame History
newdas authored 2018-08-02 00:22 +08:00 . all
package main
import (
"io"
// "encoding/json"
"net/http"
)
func sendErrorResponse(w http.ResponseWriter, sc int, errMsg string) {
w.WriteHeader(sc)
io.WriteString(w, errMsg)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/newdas/video_server.git
git@gitee.com:newdas/video_server.git
newdas
video_server
video_server
cbae10443da8

Search