(name string, required bool, variadic bool, valueKind string, description string)
| 389 | } |
| 390 | |
| 391 | func streamCommandArg(name string, required bool, variadic bool, valueKind string, description string) jsonCommandArg { |
| 392 | arg := commandArg(name, required, variadic, valueKind, description) |
| 393 | arg.StreamDash = true |
| 394 | return arg |
| 395 | } |
| 396 | |
| 397 | func commandManifestMetadataFor(path string) jsonCommandManifestMetadata { |
| 398 | meta := commandManifestRegistry[path] |
no test coverage detected