gin/render/xml.go

16 lines
254 B
Go
Raw Normal View History

package render
import (
"encoding/xml"
"net/http"
)
2015-05-18 13:45:24 +00:00
type XML struct {
Data interface{}
}
2015-05-18 13:45:24 +00:00
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)
}