Src is the resource interface.
| 31 | } |
| 32 | // Src is the resource interface. |
| 33 | Src interface { |
| 34 | Usable() bool |
| 35 | Reset() |
| 36 | Close() |
| 37 | } |
| 38 | // Factory creates a new resource. |
| 39 | Factory func() (Src, error) |
| 40 | ) |
no outgoing calls
no test coverage detected