(flags *pflag.FlagSet)
| 59 | } |
| 60 | |
| 61 | func addIncludeExcludeFlags(flags *pflag.FlagSet) { |
| 62 | flags.StringSliceP( |
| 63 | "include", "i", []string{"**"}, |
| 64 | "include fields matching the provided pattern") |
| 65 | |
| 66 | flags.StringSliceP( |
| 67 | "exclude", "x", []string{}, |
| 68 | "exclude fields matching the provided pattern") |
| 69 | } |
| 70 | |
| 71 | func addThreadsFlag(flags *pflag.FlagSet) { |
| 72 | flags.IntP( |
no outgoing calls
no test coverage detected