Merged in feature/eula.part1 (pull request #206)

eula support

* eula support

* docs
This commit is contained in:
Jay Brown
2026-01-22 18:17:27 +00:00
parent c10fa98d0a
commit 63c12a2f44
38 changed files with 15646 additions and 230 deletions
+3
View File
@@ -10,6 +10,7 @@ import (
"queryorchestration/internal/document"
documentbatch "queryorchestration/internal/document/batch"
documentupload "queryorchestration/internal/document/upload"
"queryorchestration/internal/eula"
"queryorchestration/internal/export"
"queryorchestration/internal/fieldextraction"
"queryorchestration/internal/folder"
@@ -49,6 +50,7 @@ func createControllerServices(cfg *ControllerConfig) *queryapi.Services {
fieldext := fieldextraction.New(cfg)
fld := folder.New(cfg)
lbl := label.New(cfg)
eul := eula.New(cfg)
return &queryapi.Services{
Export: exp,
@@ -62,5 +64,6 @@ func createControllerServices(cfg *ControllerConfig) *queryapi.Services {
FieldExtraction: fieldext,
Folder: fld,
Label: lbl,
Eula: eul,
}
}