cio is a basic container IO implementation.
| 189 | |
| 190 | // cio is a basic container IO implementation. |
| 191 | type cio struct { |
| 192 | config Config |
| 193 | wg *sync.WaitGroup |
| 194 | closers []io.Closer |
| 195 | cancel context.CancelFunc |
| 196 | } |
| 197 | |
| 198 | func (c *cio) Config() Config { |
| 199 | return c.config |
nothing calls this directly
no outgoing calls
no test coverage detected