| 15 | } |
| 16 | |
| 17 | type Manager struct { |
| 18 | drivers eosc.Untyped[string, IStrategyDriver] |
| 19 | } |
| 20 | |
| 21 | func (m *Manager) AddDriver(driver IStrategyDriver) { |
| 22 | m.drivers.Set(driver.Driver(), driver) |
nothing calls this directly
no outgoing calls
no test coverage detected