dev conver files
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2026-02-25 19:29:19 +07:00
parent 694681fccc
commit 3bb6667c2f
15 changed files with 33 additions and 139 deletions
@@ -4,16 +4,12 @@ import lombok.AllArgsConstructor;
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.event.EventListener;
import org.springframework.stereotype.Component;
import ru.soune.nocopy.service.file.FileProcessingOrchestrator;
@Component
@AllArgsConstructor
public class NoCopyInitializer {
private final FileProcessingOrchestrator orchestrator;
@EventListener(ApplicationReadyEvent.class)
public void initializeOnStartup() {
orchestrator.initializeProcessingQueue();
}
}