forked from mirror/gin
18 lines
293 B
Go
18 lines
293 B
Go
package render
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"net/http"
|
|
)
|
|
|
|
type XML struct {
|
|
Data interface{}
|
|
}
|
|
|
|
const xmlContentType = "application/xml; charset=utf-8"
|
|
|
|
func (r XML) Write(w http.ResponseWriter) error {
|
|
w.Header().Set("Content-Type", xmlContentType)
|
|
return xml.NewEncoder(w).Encode(r.Data)
|
|
}
|