Adds Whoogle.nor search provider

This commit is contained in:
James Magahern
2021-11-29 10:55:55 -10:00
parent 9bbf238382
commit 3ba35c70a6
2 changed files with 6 additions and 0 deletions

View File

@@ -36,12 +36,14 @@ class Settings
case google = "Google"
case duckduckgo = "DuckDuckGo"
case searxnor = "Searx.nor"
case whoogle = "Whoogle.nor"
func provider() -> SearchProvider {
switch self {
case .google: return SearchProvider.google
case .duckduckgo: return SearchProvider.duckduckgo
case .searxnor: return SearchProvider.searxnor
case .whoogle: return SearchProvider.whoogle
}
}
}