1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-24 10:07:21 +02:00
woodpecker/vendor/github.com/gin-gonic/gin/render/xml.go

16 lines
254 B
Go
Raw Normal View History

2015-05-22 20:37:40 +02:00
package render
import (
"encoding/xml"
"net/http"
)
type XML struct {
Data interface{}
}
func (r XML) Write(w http.ResponseWriter) error {
w.Header().Set("Content-Type", "application/xml; charset=utf-8")
return xml.NewEncoder(w).Encode(r.Data)
}