gin/render/data.go

21 lines
435 B
Go
Raw Normal View History

2015-05-22 17:21:23 +00: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.
package render
import "net/http"
2015-05-18 13:45:24 +00:00
type Data struct {
ContentType string
Data []byte
}
2015-06-04 03:25:21 +00:00
func (r Data) Render(w http.ResponseWriter) error {
2015-05-18 13:45:24 +00:00
if len(r.ContentType) > 0 {
w.Header()["Content-Type"] = []string{r.ContentType}
}
2015-05-18 13:45:24 +00:00
w.Write(r.Data)
return nil
}