Factory is the *di.Factory that creates *gorm.DB under a specific configuration entry.
| 8 | // Factory is the *di.Factory that creates *gorm.DB under a specific |
| 9 | // configuration entry. |
| 10 | type Factory struct { |
| 11 | *di.Factory |
| 12 | } |
| 13 | |
| 14 | // Make creates *gorm.DB under a specific configuration entry. |
| 15 | func (d Factory) Make(name string) (*gorm.DB, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected