(name string)
| 25 | } |
| 26 | |
| 27 | func Get(name string) (Impl, bool) { |
| 28 | regLock.RLock() |
| 29 | defer regLock.RUnlock() |
| 30 | result, ok := registry[name] |
| 31 | return result, ok |
| 32 | } |
| 33 | |
| 34 | func Methods() []string { |
| 35 | regLock.RLock() |
no outgoing calls
no test coverage detected