DummyInput used for debugging. It generate 1 "GET /"" request per second.
| 6 | |
| 7 | // DummyInput used for debugging. It generate 1 "GET /"" request per second. |
| 8 | type DummyInput struct { |
| 9 | data chan []byte |
| 10 | quit chan struct{} |
| 11 | } |
| 12 | |
| 13 | // NewDummyInput constructor for DummyInput |
| 14 | func NewDummyInput(options string) (di *DummyInput) { |
nothing calls this directly
no outgoing calls
no test coverage detected