(userID string)
| 61 | } |
| 62 | |
| 63 | func (cm *ClientManager) DeleteHTTPClient(userID string) { |
| 64 | cm.Lock() |
| 65 | defer cm.Unlock() |
| 66 | delete(cm.httpClients, userID) |
| 67 | } |
| 68 | |
| 69 | func (cm *ClientManager) SetMyClient(userID string, client *MyClient) { |
| 70 | cm.Lock() |
no outgoing calls
no test coverage detected