crabbysearch/src/engines/mod.rs

10 lines
469 B
Rust
Raw Normal View History

//! 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.
pub mod brave;
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;