| 29 | } |
| 30 | |
| 31 | type FakeConnectionLogger struct { |
| 32 | mu sync.Mutex |
| 33 | upsertions []database.UpsertConnectionLogParams |
| 34 | } |
| 35 | |
| 36 | func (m *FakeConnectionLogger) Reset() { |
| 37 | m.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected