| 112 | var _ dbpubsub.Pubsub = &errInjectingPubsub{} |
| 113 | |
| 114 | type errInjectingPubsub struct { |
| 115 | listener dbpubsub.ListenerWithErr |
| 116 | } |
| 117 | |
| 118 | func (*errInjectingPubsub) Subscribe(string, dbpubsub.Listener) (func(), error) { |
| 119 | return nil, xerrors.New("Subscribe not implemented") |
nothing calls this directly
no outgoing calls
no test coverage detected