about summary refs log tree commit diff stats
path: root/internal/importer/importer.go
diff options
context:
space:
mode:
authorAlan Pearce2025-02-14 01:36:40 +0100
committerAlan Pearce2025-02-14 01:36:40 +0100
commitea8c3053006e67210e16ed55febbcb0c6a374b54 (patch)
treecd4ae4d60f21faf3a41fb1de781e5c5c10c66039 /internal/importer/importer.go
parent3ee8248656c089594ea8a3be41945c408ab39aa4 (diff)
downloadsearchix-ea8c3053006e67210e16ed55febbcb0c6a374b54.tar.lz
searchix-ea8c3053006e67210e16ed55febbcb0c6a374b54.tar.zst
searchix-ea8c3053006e67210e16ed55febbcb0c6a374b54.zip
refactor: split importer args
Diffstat (limited to 'internal/importer/importer.go')
-rw-r--r--internal/importer/importer.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/importer/importer.go b/internal/importer/importer.go
index 99f7e7a..0b2db43 100644
--- a/internal/importer/importer.go
+++ b/internal/importer/importer.go
@@ -9,10 +9,6 @@ import (
 	"go.alanpearce.eu/x/log"
 )
 
-type Importer interface {
-	Import(context.Context, *index.WriteIndex) (bool, error)
-}
-
 type Processor interface {
 	Process(context.Context) (<-chan nix.Importable, <-chan error)
 }