mirror of
https://github.com/pierre-emmanuelJ/iptv-proxy.git
synced 2026-03-17 15:34:10 +01:00
Bumps [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) from 1.7.7 to 1.9.0. - [Release notes](https://github.com/gin-gonic/gin/releases) - [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md) - [Commits](https://github.com/gin-gonic/gin/compare/v1.7.7...v1.9.0) --- updated-dependencies: - dependency-name: github.com/gin-gonic/gin dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
639 B
Go
26 lines
639 B
Go
// 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"
|
|
|
|
// Data contains ContentType and bytes data.
|
|
type Data struct {
|
|
ContentType string
|
|
Data []byte
|
|
}
|
|
|
|
// Render (Data) writes data with custom ContentType.
|
|
func (r Data) Render(w http.ResponseWriter) (err error) {
|
|
r.WriteContentType(w)
|
|
_, err = w.Write(r.Data)
|
|
return
|
|
}
|
|
|
|
// WriteContentType (Data) writes custom ContentType.
|
|
func (r Data) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, []string{r.ContentType})
|
|
}
|