diff options
author | Alan Pearce | 2024-05-16 20:22:42 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-16 20:31:03 +0200 |
commit | c51ca7c62e08f43ef9974af35886d30ce54a1f22 (patch) | |
tree | 6779f521c289d1750ceb35b57fbb0d3acad20385 /internal/importer/importer.go | |
parent | 0ef52f2f82c62694c5420f7f6c82fb8c45900d1d (diff) | |
download | searchix-c51ca7c62e08f43ef9974af35886d30ce54a1f22.tar.lz searchix-c51ca7c62e08f43ef9974af35886d30ce54a1f22.tar.zst searchix-c51ca7c62e08f43ef9974af35886d30ce54a1f22.zip |
refactor: use interface to unify Options and Packages
Diffstat (limited to 'internal/importer/importer.go')
-rw-r--r-- | internal/importer/importer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/importer/importer.go b/internal/importer/importer.go index 0768656..255f70e 100644 --- a/internal/importer/importer.go +++ b/internal/importer/importer.go @@ -75,7 +75,7 @@ func processOptions( options, pErrs := processor.Process(ctx) wg.Add(1) - iErrs := indexer.ImportOptions(ctx, options) + iErrs := indexer.Import(ctx, options) var hadErrors bool go func() { |