| 28 | func (b bearerToken) RequireTransportSecurity() bool { return false } |
| 29 | |
| 30 | type Client struct { |
| 31 | address string |
| 32 | busy bool |
| 33 | parallel bool |
| 34 | token string |
| 35 | sync.Mutex |
| 36 | opMutex sync.Mutex |
| 37 | wd WatchDog |
| 38 | } |
| 39 | |
| 40 | type WatchDog interface { |
| 41 | Mark(address string) |
nothing calls this directly
no outgoing calls
no test coverage detected