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-04-22 14:35:07 +03:00
|
|
|
pub mod duckduckgo;
|
2023-09-24 13:54:08 +02:00
|
|
|
pub mod search_result_parser;
|
2023-04-22 14:35:07 +03:00
|
|
|
pub mod searx;
|