Printer is an interface that knows how to print interfaces.
| 14 | |
| 15 | // Printer is an interface that knows how to print interfaces. |
| 16 | type Printer interface { |
| 17 | // Print receives an interface, formats it and prints it. |
| 18 | Print(*iostreams.IOStreams, interface{}) error |
| 19 | } |
| 20 | |
| 21 | // PrintOptions struct defines a struct for various print options |
| 22 | type PrintOptions struct { |
no outgoing calls
no test coverage detected