diff --git a/app/Console/Commands/OrcaSlicer/ImportCommand.php b/app/Console/Commands/OrcaSlicer/ImportCommand.php index 4d63896..c36d602 100644 --- a/app/Console/Commands/OrcaSlicer/ImportCommand.php +++ b/app/Console/Commands/OrcaSlicer/ImportCommand.php @@ -24,10 +24,11 @@ public function handle( NozzleService $nozzle, FilamentTypeService $filament, ): void { - //$this->components->task('Clean up', fn () => $download->cleanup()); - //$this->components->task('Download', fn () => $download->download()); - //$this->components->task('Extract', fn () => $download->extract()); - //$this->components->task('Release', fn () => $download->release()); + $this->components->task('Clean up', fn () => $download->cleanup()); + $this->components->task('Download', fn () => $download->download()); + $this->components->task('Extract', fn () => $download->extract()); + $this->components->task('Release', fn () => $download->release()); + $this->components->task('Import map', fn () => $map->import()); $this->components->task('Import machines', fn () => $machine->import()); $this->components->task('Import nozzles', fn () => $nozzle->import());