(header Str)
| 22 | type noteOptions func(o *options) |
| 23 | |
| 24 | func withHeader(header Str) noteOptions { |
| 25 | return func(o *options) { |
| 26 | o.header = header |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | func (o Output) printNoteWithOptions(format string, args []any, opts ...noteOptions) { |
| 31 | if !o.noColor { |
no outgoing calls
no test coverage detected
searching dependent graphs…