mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
15 lines
168 B
Go
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)
|
|
}
|
|
}
|