| 20 | ) |
| 21 | |
| 22 | type Flags struct { |
| 23 | anyio.WriterOpts |
| 24 | DefaultFormat string |
| 25 | color bool |
| 26 | forceBinary bool |
| 27 | jsonPretty bool |
| 28 | jsonShortcut bool |
| 29 | outputFile string |
| 30 | pretty int |
| 31 | split string |
| 32 | splitSize auto.Bytes |
| 33 | supPersist string |
| 34 | supPretty bool |
| 35 | supShortcut bool |
| 36 | unbuffered bool |
| 37 | } |
| 38 | |
| 39 | func (f *Flags) Options() anyio.WriterOpts { |
| 40 | return f.WriterOpts |
nothing calls this directly
no outgoing calls
no test coverage detected