Generate complex xml with Golang
Last week I needed a way to generate complex XML export data for a client. This was a project that sounded like a great way for me to dig deeper into Go! Quickly I discovered how simple it is to generate XML files from structs, however, some parts required deeply nested data and several attributes. Go also supports this, but...