Output format choices for the CLI.
| 72 | |
| 73 | |
| 74 | class FormatChoice(StrEnum): |
| 75 | """Output format choices for the CLI.""" |
| 76 | |
| 77 | terminal = "terminal" |
| 78 | json = "json" |
| 79 | markdown = "markdown" |
| 80 | sarif = "sarif" |
| 81 | |
| 82 | |
| 83 | class TransportChoice(StrEnum): |
nothing calls this directly
no outgoing calls
no test coverage detected