diff options
author | Alan Pearce | 2024-05-09 20:10:23 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-09 20:10:23 +0200 |
commit | 8ab9adf719090e213bd91b2747986ba6ef94576d (patch) | |
tree | 66f2812851f8ac1ff98af39e6863d0907e090c67 /internal/importer/nixpkgs-channel.go | |
parent | 631c02ac689b3366987918737e2b09f52fb16dda (diff) | |
download | searchix-8ab9adf719090e213bd91b2747986ba6ef94576d.tar.lz searchix-8ab9adf719090e213bd91b2747986ba6ef94576d.tar.zst searchix-8ab9adf719090e213bd91b2747986ba6ef94576d.zip |
fix: pointer type mismatch
Diffstat (limited to 'internal/importer/nixpkgs-channel.go')
-rw-r--r-- | internal/importer/nixpkgs-channel.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/importer/nixpkgs-channel.go b/internal/importer/nixpkgs-channel.go index e237246..b78844b 100644 --- a/internal/importer/nixpkgs-channel.go +++ b/internal/importer/nixpkgs-channel.go @@ -15,7 +15,7 @@ import ( type NixpkgsChannelImporter struct { DataPath string - Source Source + Source *Source Logger *slog.Logger indexPath string } |