mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-03 00:38:53 +00:00
11 lines
247 B
Java
11 lines
247 B
Java
package com.dark98.santoku.boot;
|
|
|
|
import com.dark98.santoku.slic3r.PrintConfigDef;
|
|
|
|
public class PrintConfigWarmupTask extends BootTask {
|
|
public PrintConfigWarmupTask() {
|
|
super(PrintConfigDef::getInstance);
|
|
onWorker();
|
|
}
|
|
}
|