LivePrinter is a printer which can update it's output live.
| 4 | |
| 5 | // LivePrinter is a printer which can update it's output live. |
| 6 | type LivePrinter interface { |
| 7 | // GenericStart runs Start, but returns a LivePrinter. |
| 8 | // This is used for the interface LivePrinter. |
| 9 | // You most likely want to use Start instead of this in your program. |
| 10 | GenericStart() (*LivePrinter, error) |
| 11 | |
| 12 | // GenericStop runs Stop, but returns a LivePrinter. |
| 13 | // This is used for the interface LivePrinter. |
| 14 | // You most likely want to use Stop instead of this in your program. |
| 15 | GenericStop() (*LivePrinter, error) |
| 16 | |
| 17 | SetWriter(writer io.Writer) |
| 18 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…