(f reflect.StructField)
| 472 | } |
| 473 | |
| 474 | func isAbsentInCLI(f reflect.StructField) bool { |
| 475 | return getDocTagFlag(f, "nocli") |
| 476 | } |
| 477 | |
| 478 | func ignoreCLI(f reflect.Type) bool { |
| 479 | if ignore, OK := typesToIgnoreCLI[f.String()]; OK && ignore { |
no test coverage detected