Working with YAML
Let’s learn how to work with YAML files in Go.
We'll cover the following...
External packages for YAML
In this lesson, we briefly discuss how to work with YAML files in Go. The Go standard library does not include support for YAML files, which means that we should look at external packages for YAML support. There exist three main Go packages that allow us to work with YAML:
...