| 11 | } |
| 12 | |
| 13 | type factoryManager struct { |
| 14 | factories eosc.Untyped[string, IFactory] |
| 15 | } |
| 16 | |
| 17 | func NewFactoryManager() *factoryManager { |
| 18 | return &factoryManager{factories: eosc.BuildUntyped[string, IFactory]()} |
nothing calls this directly
no outgoing calls
no test coverage detected