mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-30 10:11:23 +02:00
17 lines
259 B
Go
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
|
||
|
}
|