| 17 | ) |
| 18 | |
| 19 | type BundleWriter struct { |
| 20 | database *db.Postgres |
| 21 | // options |
| 22 | txOptions pgx.TxOptions |
| 23 | } |
| 24 | |
| 25 | func NewBundleWriter(database *db.Postgres) *BundleWriter { |
| 26 | return &BundleWriter{ |
nothing calls this directly
no outgoing calls
no test coverage detected