diff --git a/pkg/repos/repos_legacy.go b/pkg/repos/repos_legacy.go index d9f0973..81b3bb6 100644 --- a/pkg/repos/repos_legacy.go +++ b/pkg/repos/repos_legacy.go @@ -35,15 +35,6 @@ func Pull(ctx context.Context, repos []types.Repo) error { return GetInstance(ctx).Pull(ctx, repos) } -// FindPkgs looks for packages matching the inputs inside the database. -// It returns a map that maps the package name input to any packages found for it. -// It also returns a slice that contains the names of all packages that were not found. -// -// Deprecated: use struct method -func FindPkgs_(ctx context.Context, pkgs []string) (map[string][]database.Package, []string, error) { - return GetInstance(ctx).FindPkgs(ctx, pkgs) -} - // ======================= // FOR LEGACY ONLY // =======================