Using XML in Golang
XML is a data-interchange format. It is heavily used alongside with JSON. Working with XML is simple in Golang. In this post, we will see how to work with XML in Golang. Required imports To work with XML we need to import encoding/xml package. Encoding with XML Now, we can start working with XML in […]
Using XML in Golang Read More »