Skip to content

Commit dbb0bc6

Browse files
Merge pull request #224 from nook-browser/dev
Dev
2 parents 5a8a58c + 8fcbc46 commit dbb0bc6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Nook/Managers/SearchManager/Utils.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public enum SearchProvider: String, CaseIterable, Identifiable, Codable, Sendabl
6363
case perplexity
6464
case unduck
6565
case ecosia
66+
case kagi
6667

6768
public var id: String { rawValue }
6869

@@ -76,6 +77,7 @@ public enum SearchProvider: String, CaseIterable, Identifiable, Codable, Sendabl
7677
case .perplexity: return "Perplexity"
7778
case .unduck: return "Unduck"
7879
case .ecosia: return "Ecosia"
80+
case .kagi: return "Kagi"
7981
}
8082
}
8183

@@ -89,6 +91,7 @@ public enum SearchProvider: String, CaseIterable, Identifiable, Codable, Sendabl
8991
case .perplexity: return "www.perplexity.ai"
9092
case .unduck: return "duckduckgo.com"
9193
case .ecosia: return "www.ecosia.org"
94+
case .kagi: return "kagi.com"
9295
}
9396
}
9497

@@ -110,6 +113,8 @@ public enum SearchProvider: String, CaseIterable, Identifiable, Codable, Sendabl
110113
return "https://unduck.link?q=%@"
111114
case .ecosia:
112115
return "https://www.ecosia.org/search?q=%@"
116+
case .kagi:
117+
return "https://kagi.com/search?q=%@"
113118
}
114119
}
115120
}

0 commit comments

Comments
 (0)