type Yq interface {
// Write updates a file based on a yq expression. I.e. it runs `yq eval --inplace <expression> <file>` Write(expression string, targetFile string) error
}
Yq is for running `yq` commands.
It's useful for updating YAML files without stripping comments or formatting.