Export exports the current workspace to a snapshot directory.
(celer *configs.Celer, exportDir string)
| 36 | |
| 37 | // Export exports the current workspace to a snapshot directory. |
| 38 | func Export(celer *configs.Celer, exportDir string) error { |
| 39 | exporter := NewExporter(celer, exportDir) |
| 40 | return exporter.Export() |
| 41 | } |
| 42 | |
| 43 | // Export performs the export operation. |
| 44 | func (e *Exporter) Export() error { |
no test coverage detected