(w Writer, pfx string, force bool)
| 7 | ) |
| 8 | |
| 9 | func WithPrefix(w Writer, pfx string, force bool) Writer { |
| 10 | return &prefixed{ |
| 11 | Writer: w, |
| 12 | pfx: pfx, |
| 13 | force: force, |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | type prefixed struct { |
| 18 | Writer |
no outgoing calls
no test coverage detected
searching dependent graphs…