ImportCLIProgress implements whatsapp.ImportProgress for terminal output.
| 175 | |
| 176 | // ImportCLIProgress implements whatsapp.ImportProgress for terminal output. |
| 177 | type ImportCLIProgress struct { |
| 178 | startTime time.Time |
| 179 | lastPrint time.Time |
| 180 | currentChat string |
| 181 | } |
| 182 | |
| 183 | func (p *ImportCLIProgress) OnStart() { |
| 184 | p.startTime = time.Now() |
nothing calls this directly
no outgoing calls
no test coverage detected