From 4659e0b00e3fbf2b1c74ab24943d6b1c9644e5a9 Mon Sep 17 00:00:00 2001 From: arbulu89 Date: Tue, 31 Oct 2023 08:42:01 +0100 Subject: [PATCH] Add products gatherer to the standard list --- internal/factsengine/gatherers/gatherer.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/factsengine/gatherers/gatherer.go b/internal/factsengine/gatherers/gatherer.go index 33f0876a..0b195403 100644 --- a/internal/factsengine/gatherers/gatherer.go +++ b/internal/factsengine/gatherers/gatherer.go @@ -46,6 +46,9 @@ func StandardGatherers() FactGatherersTree { PasswdGathererName: map[string]FactGatherer{ "v1": NewDefaultPasswdGatherer(), }, + ProductsGathererName: map[string]FactGatherer{ + "v1": NewDefaultProductsGatherer(), + }, SapControlGathererName: map[string]FactGatherer{ "v1": NewDefaultSapControlGatherer(), },