| 19 | import "github.com/go-pg/pg" |
| 20 | |
| 21 | type TransactionWrapper interface { |
| 22 | StartTx() (*pg.Tx, error) |
| 23 | RollbackTx(tx *pg.Tx) error |
| 24 | CommitTx(tx *pg.Tx) error |
| 25 | } |
| 26 | |
| 27 | type TransactionUtilImpl struct { |
| 28 | dbConnection *pg.DB |
no outgoing calls
no test coverage detected
searching dependent graphs…