(database *db.Memory)
| 16 | } |
| 17 | |
| 18 | func NewBundleWriter(database *db.Memory) *BundleWriter { |
| 19 | return &BundleWriter{ |
| 20 | database: database, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | // Write - Write bundles to memory database |
| 25 | func (b *BundleWriter) Write(ctx context.Context, bundles []storage.Bundle) (names []string, err error) { |
no outgoing calls
no test coverage detected