refactor: move Source/Repository types to config package
1 file changed, 2 insertions(+), 1 deletion(-)
changed files
M internal/importer/channel.go → internal/importer/channel.go
@@ -7,6 +7,7 @@ "log/slog" "os" "os/exec" "path" + "searchix/internal/config" "searchix/internal/file" "searchix/internal/search" "strconv"@@ -17,7 +18,7 @@ ) type ChannelImporter struct { DataPath string - Source *Source + Source *config.Source SourceFile string Logger *slog.Logger }