2023-09-03 12:23:34 -04: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 13:25:15 -04:00
|
|
|
pub mod brave;
|
2023-04-22 07:35:07 -04:00
|
|
|
pub mod duckduckgo;
|
2023-12-09 06:25:28 -05:00
|
|
|
pub mod librex;
|
2023-09-24 07:54:08 -04:00
|
|
|
pub mod search_result_parser;
|
2023-04-22 07:35:07 -04:00
|
|
|
pub mod searx;
|
2023-12-05 12:47:28 -05:00
|
|
|
pub mod startpage;
|