| 29 | } |
| 30 | |
| 31 | type DeltaController struct { |
| 32 | mutex sync.Mutex |
| 33 | tables map[tableIdentifier]*DeltaAppender |
| 34 | seed maphash.Seed |
| 35 | } |
| 36 | |
| 37 | func NewController() *DeltaController { |
| 38 | return &DeltaController{ |
nothing calls this directly
no outgoing calls
no test coverage detected