refactor: move Source/Repository types to config package
1 file changed, 2 insertions(+), 1 deletion(-)
changed files
M internal/importer/nixpkgs-channel.go → internal/importer/nixpkgs-channel.go
@@ -7,6 +7,7 @@ "log/slog" "net/url" "os" "path" + "searchix/internal/config" "searchix/internal/file" "searchix/internal/search"@@ -15,7 +16,7 @@ ) type NixpkgsChannelImporter struct { DataPath string - Source *Source + Source *config.Source Logger *slog.Logger }