Dalgorm implements the dal.Dal interface with gorm
| 49 | |
| 50 | // Dalgorm implements the dal.Dal interface with gorm |
| 51 | type Dalgorm struct { |
| 52 | db *gorm.DB |
| 53 | } |
| 54 | |
| 55 | var _ dal.Dal = (*Dalgorm)(nil) |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected