Move tracker mapping worker to cookiebanner and rename worker files

Move tracker_mapping_worker.go from pkg/probo to pkg/cookiebanner and
rename worker.go to pattern_analysis_worker.go to reflect the worker
name.

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-05-15 11:30:23 +04:00
parent 57f39163d1
commit 81707fe429
4 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
package probo
package cookiebanner
import (
"context"

View File

@@ -683,7 +683,7 @@ func (impl *Implm) Run(
},
)
trackerMappingWorker := probo.NewTrackerMappingWorker(pgClient, l)
trackerMappingWorker := cookiebanner.NewTrackerMappingWorker(pgClient, l)
trackerMappingWorkerCtx, stopTrackerMappingWorker := context.WithCancel(context.Background())
wg.Go(
func() {