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