yq/yq.go
2020-06-10 16:55:20 +10:00

15 lines
168 B
Go

package main
import (
"os"
command "github.com/mikefarah/yq/v3/cmd"
)
func main() {
cmd := command.New()
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}