(blockId string)
| 112 | } |
| 113 | |
| 114 | func deleteController(blockId string) { |
| 115 | registryLock.Lock() |
| 116 | defer registryLock.Unlock() |
| 117 | delete(controllerRegistry, blockId) |
| 118 | } |
| 119 | |
| 120 | func getAllControllers() map[string]Controller { |
| 121 | registryLock.RLock() |
no outgoing calls
no test coverage detected