Merged in feature/doc_import (pull request #177)

integration of background processor

* integration part 1

* feature working

* fix mimetype issue
This commit is contained in:
Jay Brown
2025-08-20 19:01:13 +00:00
parent 7a693d42f5
commit 720a84be92
34 changed files with 2682 additions and 193 deletions
+5
View File
@@ -7,6 +7,7 @@ import (
"testing"
"time"
"queryorchestration/internal/backgroundtask"
"queryorchestration/internal/client"
"queryorchestration/internal/collector"
"queryorchestration/internal/database/repository"
@@ -152,6 +153,10 @@ type ControllerConfig struct {
objectstore.ObjectStoreConfig
}
func (c *ControllerConfig) GetBackgroundRunner() *backgroundtask.Runner {
return nil // Test config returns nil
}
func createControllerServices(cfg *ControllerConfig) *queryapi.Services {
docsvc := document.New(cfg)
col := collector.New(cfg)