(region string, credentials bool, value *s3.Client)
| 39 | } |
| 40 | |
| 41 | func (m *ClientMap) Set(region string, credentials bool, value *s3.Client) { |
| 42 | m.Lock() |
| 43 | m.inner[ClientKey{Region: region, Credentials: credentials}] = value |
| 44 | m.Unlock() |
| 45 | } |
| 46 | |
| 47 | func (m *ClientMap) Len() int { |
| 48 | m.Lock() |
no outgoing calls
no test coverage detected