feat: enable combined search
1 file changed, 6 insertions(+), 1 deletion(-)
changed files
M internal/config/importer-type.go → internal/config/importer-type.go
@@ -9,13 +9,16 @@ type ImporterType int const ( - UnknownType = iota + All = iota - 1 + UnknownType Packages Options ) func (i ImporterType) String() string { switch i { + case All: + return "combined" case Packages: return "packages" case Options:@@ -27,6 +30,8 @@ } func (i ImporterType) Singular() string { switch i { + case All: + return "combined" case Packages: return "package" case Options: