Closer wraps the optional Report Close method.
| 18 | |
| 19 | // Closer wraps the optional Report Close method. |
| 20 | type Closer interface { |
| 21 | // Close permantently closes a Report, running any necessary book keeping. |
| 22 | Close() |
| 23 | } |
| 24 | |
| 25 | // A Reporter function writes out reports to the given io.Writer or returns an |
| 26 | // error in case of failure. |
no outgoing calls
no test coverage detected