Maker models Factory
| 7 | |
| 8 | // Maker models Factory |
| 9 | type Maker interface { |
| 10 | Make(name string) (*mongo.Client, error) |
| 11 | } |
| 12 | |
| 13 | // Factory is a *di.Factory that creates *mongo.Client using a specific |
| 14 | // configuration entry. |
nothing calls this directly
no outgoing calls
no test coverage detected