1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-24 10:07:21 +02:00
woodpecker/vendor/github.com/gin-gonic/gin/render/data.go
2015-09-29 17:34:44 -07:00

17 lines
259 B
Go

package render
import "net/http"
type Data struct {
ContentType string
Data []byte
}
func (r Data) Write(w http.ResponseWriter) error {
if len(r.ContentType) > 0 {
w.Header().Set("Content-Type", r.ContentType)
}
w.Write(r.Data)
return nil
}