WithEventsPublisher adds an events publisher to the metadata db to directly publish events
(p events.Publisher)
| 65 | // WithEventsPublisher adds an events publisher to the |
| 66 | // metadata db to directly publish events |
| 67 | func WithEventsPublisher(p events.Publisher) DBOpt { |
| 68 | return func(o *dbOptions) { |
| 69 | o.publisher = p |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | // dbOptions configure db options. |
| 74 | type dbOptions struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…