How about adding an option to generate camelCase Go structs from snake-case XML structs?
For example, from
<Address>
<zip-code/>
<city/>
</Address>
type Address struct {
XMLName xml.Name `xml:"Address,omitempty" json:"Address,omitempty"`
City *City `xml:"city,omitempty" json:"city,omitempty"`
ZipCode *ZipCode `xml:"zip-code,omitempty" json:"zip-code,omitempty"`
}
type City struct {
XMLName xml.Name `xml:"city,omitempty" json:"city,omitempty"`
}
type ZipCode struct {
XMLName xml.Name `xml:"zip-code,omitempty" json:"zip-code,omitempty"`
}
How about adding an option to generate camelCase Go structs from snake-case XML structs?
For example, from
To generate,