| 423 | } |
| 424 | |
| 425 | type mockDBAdapter struct { |
| 426 | workerStore map[string]WorkerStatus |
| 427 | statusStore map[string]MirrorStatus |
| 428 | workerLock sync.RWMutex |
| 429 | statusLock sync.RWMutex |
| 430 | } |
| 431 | |
| 432 | func (b *mockDBAdapter) Init() error { |
| 433 | return nil |
nothing calls this directly
no outgoing calls
no test coverage detected