package bloat import "encoding/xml" func (b *Bloat[T]) marshal(body T) ([]byte, error) { final, err := xml.Marshal(body) return final, err }