I have many xml files generated by a legacy application, no xsd schema available. The general structure is similar, but some files may have more (or less) fields than others.
I want to parse them using Go.
With zek I can generate a go struct from an xml file. Although the zek doc says it can inference across files, this doesn’t seem to work, with only 5Mb of xml files it consumes a lot of memory and nothing happens.
So I was thinking of creating a go struct for each xml file, but how could I merge them later?