gin/render/xml.go

22 lines
461 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 (
"encoding/xml"
"net/http"
)
2015-05-18 13:45:24 +00:00
type XML struct {
Data interface{}
}
2015-05-22 02:44:29 +00:00
const xmlContentType = "application/xml; charset=utf-8"
2015-05-18 13:45:24 +00:00
func (r XML) Write(w http.ResponseWriter) error {
2015-05-22 02:44:29 +00:00
w.Header().Set("Content-Type", xmlContentType)
2015-05-18 13:45:24 +00:00
return xml.NewEncoder(w).Encode(r.Data)
}