| 18 | ) |
| 19 | |
| 20 | type DriverManager struct { |
| 21 | drivers eosc.Untyped[string, ILogDriver] |
| 22 | } |
| 23 | |
| 24 | func NewDriverManager() *DriverManager { |
| 25 | return &DriverManager{drivers: eosc.BuildUntyped[string, ILogDriver]()} |
nothing calls this directly
no outgoing calls
no test coverage detected