1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00

21 lines
435 B
Go
Raw Normal View History

2015-09-29 18:21:17 -07:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
2015-05-22 11:37:40 -07:00
package render
import "net/http"
type Data struct {
ContentType string
Data []byte
}
2015-09-29 18:21:17 -07:00
func (r Data) Render(w http.ResponseWriter) error {
2015-05-22 11:37:40 -07:00
if len(r.ContentType) > 0 {
2015-09-29 18:21:17 -07:00
w.Header()["Content-Type"] = []string{r.ContentType}
2015-05-22 11:37:40 -07:00
}
w.Write(r.Data)
return nil
}