spacex / src /engines /mod.rs
neon_arch
⚙️ refactor: change & add documentation to the code based on the lints (#205)
049b1c1
raw
history blame
447 Bytes
//! 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 duckduckgo;
pub mod engine_models;
pub mod searx;