2023-09-03 19:23:34 +03:00
|
|
|
//! This module provides different modules which handles the functionlity to fetch results from the
|
|
|
|
//! upstream search engines based on user requested queries. Also provides different models to
|
|
|
|
//! provide a standard functions to be implemented for all the upstream search engine handling
|
|
|
|
//! code. Moreover, it also provides a custom error for the upstream search engine handling code.
|
|
|
|
|
2023-10-16 19:25:15 +02:00
|
|
|
pub mod brave;
|
2023-04-22 14:35:07 +03:00
|
|
|
pub mod duckduckgo;
|
2023-12-09 16:55:28 +05:30
|
|
|
pub mod librex;
|
2023-12-30 00:21:06 +08:00
|
|
|
pub mod mojeek;
|
2023-09-24 13:54:08 +02:00
|
|
|
pub mod search_result_parser;
|
2023-04-22 14:35:07 +03:00
|
|
|
pub mod searx;
|
2023-12-05 20:47:28 +03:00
|
|
|
pub mod startpage;
|