yq/yq.go

15 lines
168 B
Go
Raw Normal View History

2015-09-26 22:15:49 +00:00
package main
import (
2020-01-19 21:42:08 +00:00
"os"
2020-10-27 05:45:16 +00:00
command "github.com/mikefarah/yq/v4/cmd"
2015-09-26 22:15:49 +00:00
)
func main() {
cmd := command.New()
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}