()
| 175 | } |
| 176 | |
| 177 | func main() { |
| 178 | err := run(os.Args[1:], nil) |
| 179 | if err != nil { |
| 180 | fmt.Fprintln(os.Stderr, err) |
| 181 | os.Exit(1) |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | func run(args []string, opts []kong.Option) error { |
| 186 | var cmd rootCmd |
nothing calls this directly
no test coverage detected
searching dependent graphs…