GormDatabase is a wrapper for the gorm framework.
| 142 | |
| 143 | // GormDatabase is a wrapper for the gorm framework. |
| 144 | type GormDatabase struct { |
| 145 | DB *gorm.DB |
| 146 | } |
| 147 | |
| 148 | // Close closes the gorm database connection. |
| 149 | func (d *GormDatabase) Close() { |
nothing calls this directly
no outgoing calls
no test coverage detected