gormMessageRepository is responsible for persisting entities.Message
| 17 | |
| 18 | // gormMessageRepository is responsible for persisting entities.Message |
| 19 | type gormMessageRepository struct { |
| 20 | logger telemetry.Logger |
| 21 | tracer telemetry.Tracer |
| 22 | db *gorm.DB |
| 23 | } |
| 24 | |
| 25 | // NewGormMessageRepository creates the GORM version of the MessageRepository |
| 26 | func NewGormMessageRepository( |
nothing calls this directly
no outgoing calls
no test coverage detected