stub implements Stub.
| 29 | |
| 30 | // stub implements Stub. |
| 31 | type stub struct { |
| 32 | name string |
| 33 | m sync.Mutex |
| 34 | factory func(ctx context.Context, onClose func(error)) (io.Closer, error) |
| 35 | |
| 36 | registrationTimeout time.Duration |
| 37 | requestTimeout time.Duration |
| 38 | } |
| 39 | |
| 40 | var ( |
| 41 | ParseID = secrets.ParseID |
nothing calls this directly
no outgoing calls
no test coverage detected