mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-07 16:15:27 +00:00
15 lines
254 B
Go
15 lines
254 B
Go
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)
|
|
}
|