()
| 24 | // StringReader is the interface that wraps the ReadString method. |
| 25 | type StringReader interface { |
| 26 | ReadString() (string, error) |
| 27 | } |
| 28 | |
| 29 | // StringArrayReader is a wrapper around a slice of strings that implements |
no outgoing calls
no test coverage detected