EventStreamDecoder decodes a s3.Event with the given decoder.
| 1464 | // EventStreamDecoder decodes a s3.Event with |
| 1465 | // the given decoder. |
| 1466 | type EventStreamDecoder interface { |
| 1467 | Decode() ([]byte, error) |
| 1468 | } |
| 1469 | |
| 1470 | type JSONDecoder struct { |
| 1471 | decoder *json.Decoder |
no outgoing calls
no test coverage detected